@@ -16,7 +16,7 @@ discard block |
||
| 16 | 16 | public function register() |
| 17 | 17 | { |
| 18 | 18 | if (!defined('SCOOL_INVENTORY_PATH')) { |
| 19 | - define('SCOOL_INVENTORY_PATH', realpath(__DIR__.'/../../')); |
|
| 19 | + define('SCOOL_INVENTORY_PATH', realpath(__DIR__ . '/../../')); |
|
| 20 | 20 | } |
| 21 | 21 | $this->app->register(NamesServiceProvider::class); |
| 22 | 22 | } |
@@ -39,7 +39,7 @@ discard block |
||
| 39 | 39 | */ |
| 40 | 40 | private function loadMigrations() |
| 41 | 41 | { |
| 42 | - $this->loadMigrationsFrom(SCOOL_CURRICULUM_PATH.'/database/migrations'); |
|
| 42 | + $this->loadMigrationsFrom(SCOOL_CURRICULUM_PATH . '/database/migrations'); |
|
| 43 | 43 | } |
| 44 | 44 | |
| 45 | 45 | /** |
@@ -61,14 +61,14 @@ discard block |
||
| 61 | 61 | ScoolCurriculum::configs(), 'scool_curriculum' |
| 62 | 62 | ); |
| 63 | 63 | $this->mergeConfigFrom( |
| 64 | - SCOOL_CURRICULUM_PATH.'/config/curriculum.php', 'scool_curriculum' |
|
| 64 | + SCOOL_CURRICULUM_PATH . '/config/curriculum.php', 'scool_curriculum' |
|
| 65 | 65 | ); |
| 66 | 66 | } |
| 67 | 67 | |
| 68 | 68 | private function publishTests() |
| 69 | 69 | { |
| 70 | 70 | $this->publishes( |
| 71 | - [SCOOL_CURRICULUM_PATH.'/tests/CurriculumTest.php' => 'tests/CurriculumTest.php'], |
|
| 71 | + [ SCOOL_CURRICULUM_PATH . '/tests/CurriculumTest.php' => 'tests/CurriculumTest.php' ], |
|
| 72 | 72 | 'scool_curriculum' |
| 73 | 73 | ); |
| 74 | 74 | } |