/var/www/vhosts/ihelp.ro/httpdocs/vendor/phpunit/phpunit/src/Framework/MockObject
NameSizeModeActions
Api/-0755rm
Builder/-0755rm
Exception/-0755rm
Generator/-0755rm
Rule/-0755rm
Stub/-0755rm
ConfigurableMethod.php11580644editdlrm
Generator.php378570644editdlrm
Invocation.php79430644editdlrm
InvocationHandler.php45000644editdlrm
Matcher.php77040644editdlrm
MethodNameConstraint.php10690644editdlrm
MockBuilder.php114580644editdlrm
MockClass.php15720644editdlrm
MockMethod.php109920644editdlrm
MockMethodSet.php10490644editdlrm
MockObject.php8860644editdlrm
MockTrait.php11300644editdlrm
MockType.php5040644editdlrm
Stub.php7560644editdlrm
Verifiable.php7140644editdlrm
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/phpunit/phpunit/src/Framework/MockObject/MockMethodSet.php (1049B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace PHPUnit\Framework\MockObject; use function array_key_exists; use function array_values; use function strtolower; /** * @internal This class is not covered by the backward compatibility promise for PHPUnit */ final class MockMethodSet { /** * @var MockMethod[] */ private $methods = []; public function addMethods(MockMethod ...$methods): void { foreach ($methods as $method) { $this->methods[strtolower($method->getName())] = $method; } } /** * @return MockMethod[] */ public function asArray(): array { return array_values($this->methods); } public function hasMethod(string $methodName): bool { return array_key_exists(strtolower($methodName), $this->methods); } }