lychee/php/autoload.php

13 lines
181 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) {
require './modules/' . $class_name . '.php';
}
?>