main
<?php declare(strict_types = 1); namespace SoliantTest\SimpleFM\Repository\Builder\Proxy\TestAssets; interface SimpleSetterInterface { public function setFoo(string $foo); public function getFoo() : string; }