PATH:
opt
/
cpanel
/
ea-wappspector
/
vendor
/
php-di
/
php-di
/
src
/
Compiler
<?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; } }
[-] ObjectCreationCompiler.php
[edit]
[+]
..
[-] RequestedEntryHolder.php
[edit]
[-] Compiler.php
[edit]
[-] Template.php
[edit]