golden hour
/opt/cpanel/ea-wappspector/vendor/php-di/php-di/src/Compiler
⬆️ Go Up
Upload
File/Folder
Size
Actions
Compiler.php
14.92 KB
Del
OK
ObjectCreationCompiler.php
7.2 KB
Del
OK
RequestedEntryHolder.php
360 B
Del
OK
Template.php
418 B
Del
OK
Edit: RequestedEntryHolder.php
<?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; } }
Save