🤩 File Manager - Mr.X
PHP:
8.3.33
Server:
Apache
OS:
Linux 5.14.0-611.49.1.el9_7.x86_64
User:
websparkit
Navigate
Upload:
Upload
New File
New Folder
Editing:Invocation.php
<?php declare(strict_types=1); /* * This file is part of PHPUnit. * * (c) Sebastian Bergmann <sebastian@phpunit.de> * * 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_map; use function implode; use function sprintf; use function str_starts_with; use function strtolower; use function substr; use PHPUnit\Framework\SelfDescribing; use PHPUnit\Util\Exporter; /** * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit * * @internal This class is not covered by the backward compatibility promise for PHPUnit */ final readonly class Invocation implements SelfDescribing { /** * @var class-string */ private string $className; /** * @var non-empty-string */ private string $methodName; /** * @var array<mixed> */ private array $parameters; private string $returnType; private bool $isReturnTypeNullable; private MockObjectInternal|StubInternal $object; /** * @param class-string $className * @param non-empty-string $methodName * @param array<mixed> $parameters */ public function __construct(string $className, string $methodName, array $parameters, string $returnType, MockObjectInternal|StubInternal $object) { $this->className = $className; $this->methodName = $methodName; $this->parameters = $parameters; $this->object = $object; if (strtolower($methodName) === '__tostring') { $returnType = 'string'; } if (str_starts_with($returnType, '?')) { $returnType = substr($returnType, 1); $this->isReturnTypeNullable = true; } else { $this->isReturnTypeNullable = false; } $this->returnType = $returnType; } /** * @return class-string */ public function className(): string { return $this->className; } /** * @return non-empty-string */ public function methodName(): string { return $this->methodName; } /** * @return array<mixed> */ public function parameters(): array { return $this->parameters; } /** * @throws Exception */ public function generateReturnValue(): mixed { if ($this->returnType === 'never') { throw new NeverReturningMethodException( $this->className, $this->methodName, ); } if ($this->isReturnTypeNullable) { return null; } return (new ReturnValueGenerator)->generate( $this->className, $this->methodName, $this->object, $this->returnType, ); } public function toString(): string { return sprintf( '%s::%s(%s)%s', $this->className, $this->methodName, implode( ', ', array_map( [Exporter::class, 'shortenedExport'], $this->parameters, ), ), $this->returnType !== '' ? sprintf(': %s', $this->returnType) : '', ); } public function object(): MockObjectInternal|StubInternal { return $this->object; } }
Save Changes
Cancel
Create New File
Create New Folder