Passed
Pull Request — master (#2)
by
unknown
09:16
created
app/Console/HaveAccess.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,8 +35,8 @@
 block discarded – undo
35 35
      */
36 36
     private function haveAccess(): bool
37 37
     {
38
-        $uri   = (string)config('csv_importer.uri');
39
-        $token     = (string)config('csv_importer.access_token');
38
+        $uri = (string)config('csv_importer.uri');
39
+        $token = (string)config('csv_importer.access_token');
40 40
         $request = new SystemInformationRequest($uri, $token);
41 41
         try {
42 42
             $request->get();
Please login to merge, or discard this patch.
app/Http/Controllers/TokenController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,8 +40,8 @@
 block discarded – undo
40 40
     public function doValidate(): JsonResponse
41 41
     {
42 42
         $response = ['result' => 'OK', 'message' => null];
43
-        $uri   = (string)config('csv_importer.uri');
44
-        $token   = (string)config('csv_importer.access_token');
43
+        $uri = (string)config('csv_importer.uri');
44
+        $token = (string)config('csv_importer.access_token');
45 45
         $request  = new SystemInformationRequest($uri, $token);
46 46
         try {
47 47
             $result = $request->get();
Please login to merge, or discard this patch.