📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-04 04:59:00
📂
/ (Root)
/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
rector
/
rector
/
vendor
/
rector
/
rector-phpunit
/
src
/
ValueObject
📍 /opt/cpanel/ea-wappspector/vendor/rector/rector/vendor/rector/rector-phpunit/src/ValueObject
🔄 Refresh
✏️
Editing: ConstantWithAssertMethods.php
Read Only
<?php declare (strict_types=1); namespace Rector\PHPUnit\ValueObject; final class ConstantWithAssertMethods { /** * @readonly * @var string */ private $constant; /** * @readonly * @var string */ private $assetMethodName; /** * @readonly * @var string */ private $notAssertMethodName; public function __construct(string $constant, string $assetMethodName, string $notAssertMethodName) { $this->constant = $constant; $this->assetMethodName = $assetMethodName; $this->notAssertMethodName = $notAssertMethodName; } public function getConstant() : string { return $this->constant; } public function getAssetMethodName() : string { return $this->assetMethodName; } public function getNotAssertMethodName() : string { return $this->notAssertMethodName; } }
💾 Save Changes
❌ Cancel