/opt/cpanel/ea-wappspector/vendor/php-di/php-di/src/Attribute
NameSizeModeActions
Inject.php17290644editdlrm
Injectable.php5560644editdlrm
Edit: /opt/cpanel/ea-wappspector/vendor/php-di/php-di/src/Attribute/Injectable.php (556B)
* @author Matthieu Napoli */ #[Attribute(Attribute::TARGET_CLASS)] class Injectable { /** * @param bool|null $lazy Should the object be lazy-loaded. */ public function __construct( private ?bool $lazy = null, ) { } public function isLazy() : ?bool { return $this->lazy; } }