soliantconsulting/SimpleFM

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

Summary

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

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

interface SimpleSetterInterface
{
    public function setFoo(string $foo);

    public function getFoo() : string;
}