Sid Gifari File Manager
🏠 Root
/
home
/
genremedia08
/
musicjukebox.overlookedtracks.com
/
vendor
/
jetbrains
/
phpstorm-stubs
/
tests
/
Tools
/
Editing: ModelAutoloader.php
<?php namespace StubTests\Tools; class ModelAutoloader { public static function register() { spl_autoload_register(function ($class) { $file = str_replace(['StubTests\\', '\\'], DIRECTORY_SEPARATOR, $class) . '.php'; $file = __DIR__ . '/../' . $file; if (file_exists($file)) { require $file; return true; } return false; }); } }
Save
Cancel