/var/www/vhosts/ihelp.ro/httpdocs/vendor/phpunit/phpunit/src/Framework/MockObject/Builder
NameSizeModeActions
Identity.php6560644editdlrm
InvocationMocker.php82580644editdlrm
InvocationStubber.php15560644editdlrm
MethodNameMatch.php8470644editdlrm
ParametersMatch.php17360644editdlrm
Stub.php7070644editdlrm
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/phpunit/phpunit/src/Framework/MockObject/Builder/Stub.php (707B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace PHPUnit\Framework\MockObject\Builder; use PHPUnit\Framework\MockObject\Stub\Stub as BaseStub; /** * @internal This class is not covered by the backward compatibility promise for PHPUnit */ interface Stub extends Identity { /** * Stubs the matching method with the stub object $stub. Any invocations of * the matched method will now be handled by the stub instead. */ public function will(BaseStub $stub): Identity; }