soliantconsulting/SimpleFM

View on GitHub
test/Repository/Builder/Proxy/TestAssets/SimpleGetterInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
declare(strict_types = 1);

namespace SoliantTest\SimpleFM\Repository\Builder\Proxy\TestAssets;

interface SimpleGetterInterface
{
    public function getFoo() : string;
}