taller-mvc / mvc /app /init.php
ladogton2010's picture
set app's constant
1873763
raw
history blame contribute delete
183 Bytes
<?php
//Loading main libraries
require_once('config/config.php');
spl_autoload_register(function($className){
require_once('libs/' . $className . '.php');
});