BossBey File Manager
PHP:
7.4.33
OS:
Linux
User:
root
Root
/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
rector
/
rector
/
src
/
StaticTypeMapper
/
ValueObject
/
Type
📤 Upload
📝 New File
📁 New Folder
Close
Editing: SimpleStaticType.php
<?php declare (strict_types=1); namespace Rector\StaticTypeMapper\ValueObject\Type; use PHPStan\Type\StaticType; final class SimpleStaticType extends StaticType { /** * @readonly * @var string */ private $className; public function __construct(string $className) { $this->className = $className; } public function getClassName() : string { return $this->className; } }
Save
Cancel