🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-15 04:31:22 | PHP 8.1.34
📂
/ (Root)
/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
rector
/
rector
/
rules
/
Visibility
/
ValueObject
📍 /opt/cpanel/ea-wappspector/vendor/rector/rector/rules/Visibility/ValueObject
🔄 Refresh
✏️
Editing: ChangeConstantVisibility.php
Read Only
<?php declare (strict_types=1); namespace Rector\Visibility\ValueObject; use PHPStan\Type\ObjectType; use Rector\Validation\RectorAssert; final class ChangeConstantVisibility { /** * @readonly * @var string */ private $class; /** * @readonly * @var string */ private $constant; /** * @readonly * @var int */ private $visibility; public function __construct(string $class, string $constant, int $visibility) { $this->class = $class; $this->constant = $constant; $this->visibility = $visibility; RectorAssert::className($class); } public function getObjectType() : ObjectType { return new ObjectType($this->class); } public function getConstant() : string { return $this->constant; } public function getVisibility() : int { return $this->visibility; } }
💾 Save Changes
❌ Cancel