![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/laminas/laminas-di/templates/ |
<?php /** * Generated autoloader for Laminas\Di */ declare(strict_types=1); %namespace% use function spl_autoload_register; use function spl_autoload_unregister; class Autoloader { private $registered = false; private $classmap = [ %classmap% ]; public function register() : void { if (! $this->registered) { spl_autoload_register($this); $this->registered = true; } } public function unregister() : void { if ($this->registered) { spl_autoload_unregister($this); $this->registered = false; } } public function load(string $class) : void { if (isset($this->classmap[$class])) { include __DIR__ . '/' . $this->classmap[$class]; } } public function __invoke(string $class) : void { $this->load($class); } }