@@ -22,9 +22,9 @@ |
||
| 22 | 22 | ]); |
| 23 | 23 | |
| 24 | 24 | // Registering package commands. |
| 25 | - $this->commands([ |
|
| 26 | - Installer::class, |
|
| 27 | - ]); |
|
| 25 | + $this->commands([ |
|
| 26 | + Installer::class, |
|
| 27 | + ]); |
|
| 28 | 28 | } |
| 29 | 29 | } |
| 30 | 30 | |
@@ -14,7 +14,7 @@ discard block |
||
| 14 | 14 | { |
| 15 | 15 | if ($this->app->runningInConsole()) { |
| 16 | 16 | $this->publishes([ |
| 17 | - __DIR__.'/../config/config.php' => config_path('digitonic.api-test-suite'), |
|
| 17 | + __DIR__ . '/../config/config.php' => config_path('digitonic.api-test-suite'), |
|
| 18 | 18 | ], 'config'); |
| 19 | 19 | |
| 20 | 20 | $this->publishes([ |
@@ -33,6 +33,6 @@ discard block |
||
| 33 | 33 | */ |
| 34 | 34 | public function register() |
| 35 | 35 | { |
| 36 | - $this->mergeConfigFrom(__DIR__.'/../config/config.php', 'digitonic.api-test-suite'); |
|
| 36 | + $this->mergeConfigFrom(__DIR__ . '/../config/config.php', 'digitonic.api-test-suite'); |
|
| 37 | 37 | } |
| 38 | 38 | } |
@@ -45,7 +45,7 @@ discard block |
||
| 45 | 45 | | |
| 46 | 46 | | A function that returns the field that is used in routes to identify resources |
| 47 | 47 | */ |
| 48 | - 'identifier_field' => function () { |
|
| 48 | + 'identifier_field' => function() { |
|
| 49 | 49 | }, |
| 50 | 50 | |
| 51 | 51 | /* |
@@ -55,7 +55,7 @@ discard block |
||
| 55 | 55 | | |
| 56 | 56 | | A function that returns a new valid entity id |
| 57 | 57 | */ |
| 58 | - 'identifier_faker' => function () { |
|
| 58 | + 'identifier_faker' => function() { |
|
| 59 | 59 | }, |
| 60 | 60 | |
| 61 | 61 | /* |
@@ -77,7 +77,7 @@ discard block |
||
| 77 | 77 | | |
| 78 | 78 | | the custom creation rules callbacks. e.g |
| 79 | 79 | */ |
| 80 | - 'creation_rules' => [ // the custom creation rules callbacks,e.g.: |
|
| 80 | + 'creation_rules' => [// the custom creation rules callbacks,e.g.: |
|
| 81 | 81 | // 'user_uuid' => function () { |
| 82 | 82 | // $user = factory(\App\Models\User::class)->create(); |
| 83 | 83 | // return $user->uuid; |