lychee/php/autoload.php

13 lines
190 B
PHP
Raw Normal View History

2014-04-02 17:30:58 +00:00
<?php
/**
* @name Autoload
* @author Tobias Reich
* @copyright 2014 by Tobias Reich
*/
function __autoload($class_name) {
2014-04-09 18:13:20 +00:00
require __DIR__ . '/modules/' . $class_name . '.php';
2014-04-02 17:30:58 +00:00
}
?>