| @@ -1,13 +1,13 @@ | ||
| 1 | 1 | <?php | 
| 2 | 2 | |
| 3 | 3 | // PATH aliases | 
| 4 | -define('ROOT_PATH',          __DIR__ ); | |
| 5 | -define('MIGRATIONS_PATH',    __DIR__ . '/app/database/migrations'); | |
| 6 | -define('SEEDS_PATH',         __DIR__ . '/app/database/seeds'); | |
| 7 | -define('MODELS_PATH',        __DIR__ . '/app/src/Model'); | |
| 8 | -define('SCHEMAS_PATH',       __DIR__ . '/app/src/Schema'); | |
| 9 | -define('COMMANDS_PATH',      __DIR__ . '/app/src/Console/Commands'); | |
| 10 | -define('CODE_TEMPLATE_PATH', __DIR__ . '/app/src/Console/CodeTemplates'); | |
| 11 | -define('CONFIG_PATH',        __DIR__ . '/config'); | |
| 12 | -define('APP_PATH',           __DIR__ . '/app'); | |
| 4 | +define('ROOT_PATH', __DIR__); | |
| 5 | +define('MIGRATIONS_PATH', __DIR__.'/app/database/migrations'); | |
| 6 | +define('SEEDS_PATH', __DIR__.'/app/database/seeds'); | |
| 7 | +define('MODELS_PATH', __DIR__.'/app/src/Model'); | |
| 8 | +define('SCHEMAS_PATH', __DIR__.'/app/src/Schema'); | |
| 9 | +define('COMMANDS_PATH', __DIR__.'/app/src/Console/Commands'); | |
| 10 | +define('CODE_TEMPLATE_PATH', __DIR__.'/app/src/Console/CodeTemplates'); | |
| 11 | +define('CONFIG_PATH', __DIR__.'/config'); | |
| 12 | +define('APP_PATH', __DIR__.'/app'); | |
| 13 | 13 | |