@@ -89,7 +89,6 @@ |
||
| 89 | 89 | |
| 90 | 90 | /** |
| 91 | 91 | * @return HasMany |
| 92 | - |
|
| 93 | 92 | * @throws InvalidRelationshipException |
| 94 | 93 | * @throws ModelNotFoundException |
| 95 | 94 | * @throws NoClientException |
@@ -17,8 +17,8 @@ |
||
| 17 | 17 | 'users', |
| 18 | 18 | function (Blueprint $table) { |
| 19 | 19 | $table->string('clickup_token') |
| 20 | - ->after('password') |
|
| 21 | - ->nullable(); |
|
| 20 | + ->after('password') |
|
| 21 | + ->nullable(); |
|
| 22 | 22 | } |
| 23 | 23 | ); |
| 24 | 24 | } |
@@ -15,7 +15,7 @@ discard block |
||
| 15 | 15 | { |
| 16 | 16 | Schema::table( |
| 17 | 17 | 'users', |
| 18 | - function (Blueprint $table) { |
|
| 18 | + function(Blueprint $table) { |
|
| 19 | 19 | $table->string('clickup_token') |
| 20 | 20 | ->after('password') |
| 21 | 21 | ->nullable(); |
@@ -32,7 +32,7 @@ discard block |
||
| 32 | 32 | { |
| 33 | 33 | Schema::table( |
| 34 | 34 | 'users', |
| 35 | - function (Blueprint $table) { |
|
| 35 | + function(Blueprint $table) { |
|
| 36 | 36 | $table->dropColumn('clickup_token'); |
| 37 | 37 | } |
| 38 | 38 | ); |
@@ -32,7 +32,7 @@ discard block |
||
| 32 | 32 | */ |
| 33 | 33 | public function register() |
| 34 | 34 | { |
| 35 | - $this->mergeConfigFrom(__DIR__ . '/../../config/clickup.php', 'clickup'); |
|
| 35 | + $this->mergeConfigFrom(__DIR__.'/../../config/clickup.php', 'clickup'); |
|
| 36 | 36 | } |
| 37 | 37 | |
| 38 | 38 | /** |
@@ -43,18 +43,18 @@ discard block |
||
| 43 | 43 | protected function registerPublishes() |
| 44 | 44 | { |
| 45 | 45 | if ($this->app->runningInConsole()) { |
| 46 | - $this->loadMigrationsFrom(__DIR__ . '/../../database/migrations'); |
|
| 46 | + $this->loadMigrationsFrom(__DIR__.'/../../database/migrations'); |
|
| 47 | 47 | |
| 48 | 48 | $this->publishes( |
| 49 | 49 | [ |
| 50 | - __DIR__ . '/../../config/clickup.php' => config_path('clickup.php'), |
|
| 50 | + __DIR__.'/../../config/clickup.php' => config_path('clickup.php'), |
|
| 51 | 51 | ], |
| 52 | 52 | 'clickup-config' |
| 53 | 53 | ); |
| 54 | 54 | |
| 55 | 55 | $this->publishes( |
| 56 | 56 | [ |
| 57 | - __DIR__ . '/../../database/migrations' => database_path('migrations'), |
|
| 57 | + __DIR__.'/../../database/migrations' => database_path('migrations'), |
|
| 58 | 58 | ], |
| 59 | 59 | 'clickup-migrations' |
| 60 | 60 | ); |