Completed
Push — master ( 997a92...57a157 )
by Pavel
05:48
created
app.paths.conf.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -1,12 +1,12 @@
 block discarded – undo
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/Commands');
10
-define('CONFIG_PATH',     __DIR__ . '/config');
11
-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/Commands');
10
+define('CONFIG_PATH', __DIR__.'/config');
11
+define('APP_PATH', __DIR__.'/app');
12 12
 
Please login to merge, or discard this patch.