Working on the default app structure.
This commit is contained in:
@@ -27,9 +27,11 @@ require __DIR__.'/../vendor/autoload.php';
|
||||
|
|
||||
*/
|
||||
|
||||
if (file_exists($compiled = __DIR__.'/compiled.php'))
|
||||
$compiledPath = __DIR__.'/../storage/meta/compiled.php';
|
||||
|
||||
if (file_exists($compiledPath))
|
||||
{
|
||||
require $compiled;
|
||||
require $compiledPath;
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
@@ -65,12 +65,12 @@ return array(
|
||||
|
|
||||
*/
|
||||
|
||||
'commands' => __DIR__.'/../app/console',
|
||||
'config' => __DIR__.'/../app/config',
|
||||
'controllers' => __DIR__.'/../app/http/controllers',
|
||||
'database' => __DIR__.'/../app/database',
|
||||
'filters' => __DIR__.'/../app/http/filters',
|
||||
'lang' => __DIR__.'/../app/lang',
|
||||
'requests' => __DIR__.'/../app/http/requests',
|
||||
'commands' => __DIR__.'/../app/Console',
|
||||
'config' => __DIR__.'/../config',
|
||||
'controllers' => __DIR__.'/../app/Http/Controllers',
|
||||
'database' => __DIR__.'/../database',
|
||||
'filters' => __DIR__.'/../app/Http/Filters',
|
||||
'lang' => __DIR__.'/../lang',
|
||||
'requests' => __DIR__.'/../app/Http/Requests',
|
||||
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user