opt
/
cpanel
/
ea-wappspector
/
vendor
/
rector
/
rector
/
rules
/
DeadCode
/
ValueObject
➕ New
📤 Upload
✎ Editing:
BinaryToVersionCompareCondition.php
← Back
<?php declare (strict_types=1); namespace Rector\DeadCode\ValueObject; use Rector\DeadCode\Contract\ConditionInterface; final class BinaryToVersionCompareCondition implements ConditionInterface { /** * @readonly * @var \Rector\DeadCode\ValueObject\VersionCompareCondition */ private $versionCompareCondition; /** * @readonly * @var string */ private $binaryClass; /** * @readonly * @var mixed */ private $expectedValue; /** * @param mixed $expectedValue */ public function __construct(\Rector\DeadCode\ValueObject\VersionCompareCondition $versionCompareCondition, string $binaryClass, $expectedValue) { $this->versionCompareCondition = $versionCompareCondition; $this->binaryClass = $binaryClass; $this->expectedValue = $expectedValue; } public function getVersionCompareCondition() : \Rector\DeadCode\ValueObject\VersionCompareCondition { return $this->versionCompareCondition; } public function getBinaryClass() : string { return $this->binaryClass; } /** * @return mixed */ public function getExpectedValue() { return $this->expectedValue; } }
💾 Save Changes
Cancel
📤 Upload File
×
Select File
Upload
Cancel
➕ Create New
×
Type
📄 File
📁 Folder
Name
Create
Cancel
✎ Rename Item
×
Current Name
New Name
Rename
Cancel
🔐 Change Permissions
×
Target File
Permission (e.g., 0755, 0644)
0755
0644
0777
Apply
Cancel