/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/MockClass.php (1572B)
* * 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 call_user_func; use function class_exists; /** * @internal This class is not covered by the backward compatibility promise for PHPUnit */ final class MockClass implements MockType { /** * @var string */ private $classCode; /** * @var class-string */ private $mockName; /** * @var ConfigurableMethod[] */ private $configurableMethods; /** * @psalm-param class-string $mockName */ public function __construct(string $classCode, string $mockName, array $configurableMethods) { $this->classCode = $classCode; $this->mockName = $mockName; $this->configurableMethods = $configurableMethods; } /** * @psalm-return class-string */ public function generate(): string { if (!class_exists($this->mockName, false)) { eval($this->classCode); call_user_func( [ $this->mockName, '__phpunit_initConfigurableMethods', ], ...$this->configurableMethods, ); } return $this->mockName; } public function getClassCode(): string { return $this->classCode; } }