File manager - Edit - /var/www/payraty/helpdesk/vendor/rector/rector/rules/Transform/ValueObject/StaticCallToFuncCall.php
Back
<?php declare (strict_types=1); namespace Rector\Transform\ValueObject; use PHPStan\Type\ObjectType; use Rector\Core\Validation\RectorAssert; final class StaticCallToFuncCall { /** * @var class-string * @readonly */ private $class; /** * @readonly * @var string */ private $method; /** * @readonly * @var string */ private $function; /** * @param class-string $class */ public function __construct(string $class, string $method, string $function) { $this->class = $class; $this->method = $method; $this->function = $function; RectorAssert::className($class); RectorAssert::methodName($method); RectorAssert::functionName($function); } public function getObjectType() : ObjectType { return new ObjectType($this->class); } public function getMethod() : string { return $this->method; } public function getFunction() : string { return $this->function; } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings