File manager - Edit - /var/www/payraty/helpdesk/vendor/rector/rector/vendor/rector/rector-phpoffice/src/ValueObject/ConditionalSetValue.php
Back
<?php declare (strict_types=1); namespace Rector\PHPOffice\ValueObject; final class ConditionalSetValue { /** * @readonly * @var string */ private $oldMethod; /** * @readonly * @var string */ private $newGetMethod; /** * @readonly * @var string */ private $newSetMethod; /** * @readonly * @var int */ private $argPosition; /** * @readonly * @var bool */ private $hasRow; public function __construct(string $oldMethod, string $newGetMethod, string $newSetMethod, int $argPosition, bool $hasRow) { $this->oldMethod = $oldMethod; $this->newGetMethod = $newGetMethod; $this->newSetMethod = $newSetMethod; $this->argPosition = $argPosition; $this->hasRow = $hasRow; } public function getOldMethod() : string { return $this->oldMethod; } public function getArgPosition() : int { return $this->argPosition; } public function getNewGetMethod() : string { return $this->newGetMethod; } public function getNewSetMethod() : string { return $this->newSetMethod; } public function hasRow() : bool { return $this->hasRow; } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings