Passed
Pull Request — master (#9)
by Steven
04:35
created
src/ApiTestSuiteServiceProvider.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -22,9 +22,9 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
config/config.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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;
Please login to merge, or discard this patch.