✏️ 正在编辑: InstalledPackage.php
路径:
/opt/cpanel/ea-wappspector/vendor/rector/rector/src/Composer/ValueObject/InstalledPackage.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php declare (strict_types=1); namespace Rector\Composer\ValueObject; final class InstalledPackage { /** * @readonly * @var string */ private $name; /** * @readonly * @var string */ private $version; public function __construct(string $name, string $version) { $this->name = $name; $this->version = $version; } public function getName() : string { return $this->name; } public function getVersion() : string { return $this->version; } }
💾 保存文件
← 返回文件管理器