/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
rector
/
rector
/
src
/
Set
/
ValueObject
/
/opt/cpanel/ea-wappspector/vendor/rector/rector/src/Set/ValueObject
mkdir
upload
Name
Size
Mode
Actions
ComposerTriggeredSet.php
1889
0644
edit
dl
rm
LevelSetList.php
1905
0644
edit
dl
rm
Set.php
985
0644
edit
dl
rm
SetList.php
3380
0644
edit
dl
rm
Edit:
/opt/cpanel/ea-wappspector/vendor/rector/rector/src/Set/ValueObject/Set.php
(985B)
<?php declare (strict_types=1); namespace Rector\Set\ValueObject; use Rector\Set\Contract\SetInterface; use RectorPrefix202411\Webmozart\Assert\Assert; /** * @api used by extensions */ final class Set implements SetInterface { /** * @readonly * @var string */ private $groupName; /** * @readonly * @var string */ private $setName; /** * @readonly * @var string */ private $setFilePath; public function __construct(string $groupName, string $setName, string $setFilePath) { $this->groupName = $groupName; $this->setName = $setName; $this->setFilePath = $setFilePath; Assert::fileExists($setFilePath); } public function getGroupName() : string { return $this->groupName; } public function getName() : string { return $this->setName; } public function getSetFilePath() : string { return $this->setFilePath; } }
Save
groupName = $groupName; $this->setName = $setName; $this->setFilePath = $setFilePath; Assert::fileExists($setFilePath); } public function getGroupName() : string { return $this->groupName; } public function getName() : string { return $this->setName; } public function getSetFilePath() : string { return $this->setFilePath; } }