File manager - Edit - /var/www/payraty/helpdesk/vendor/rector/rector/vendor/rector/rector-nette/src/ValueObject/FormField.php
Back
<?php declare (strict_types=1); namespace Rector\Nette\ValueObject; final class FormField { /** * @readonly * @var string */ private $name; /** * @readonly * @var string */ private $type; /** * @readonly * @var bool */ private $isRequired; public function __construct(string $name, string $type, bool $isRequired) { $this->name = $name; $this->type = $type; $this->isRequired = $isRequired; } public function getName() : string { return $this->name; } public function getType() : string { return $this->type; } public function isRequired() : bool { return $this->isRequired; } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings