/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
php-di
/
php-di
/
src
/
Compiler
/
Upload File
HOME
<?php declare(strict_types=1); namespace DI\Compiler; use DI\Factory\RequestedEntry; /** * @author Matthieu Napoli <matthieu@mnapoli.fr> */ class RequestedEntryHolder implements RequestedEntry { public function __construct( private string $name, ) { } public function getName() : string { return $this->name; } }