api_monitor/vendor/autoload.php

8 lines
No EOL
170 B
PHP

<?php
spl_autoload_register(function ($className) {
$filePath = str_replace('\\', DIRECTORY_SEPARATOR, $className);
require_once($filePath . '.class.php');
});