File manager - Edit - /var/www/payraty/helpdesk/vendor/rector/rector/vendor/rector/rector-doctrine/src/ValueObject/DefaultAnnotationArgValue.php
Back
<?php declare (strict_types=1); namespace Rector\Doctrine\ValueObject; final class DefaultAnnotationArgValue { /** * @readonly * @var string */ private $annotationClass; /** * @readonly * @var string */ private $argName; /** * @readonly * @var string|bool|int */ private $defaultValue; /** * @param string|bool|int $defaultValue */ public function __construct(string $annotationClass, string $argName, $defaultValue) { $this->annotationClass = $annotationClass; $this->argName = $argName; $this->defaultValue = $defaultValue; } public function getAnnotationClass() : string { return $this->annotationClass; } public function getArgName() : string { return $this->argName; } /** * @return bool|int|string */ public function getDefaultValue() { return $this->defaultValue; } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings