Admin
dashboard
file manager
command
php exec
/
/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
rector
/
rector
/
src
/
Composer
/
ValueObject
path:
go
upload
mkdir
name
type
size
perms
modified
actions
[parent directory]
InstalledPackage.php
file
554 B
0644
2024-11-08 13:59:10
edit
delete
rename
editing: 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; } }
save
cancel