Passed
Push — master ( f218e6...f51c1b )
by Arthur
04:59
created
src/Modules/Auth0/Services/Auth0Service.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
 
48 48
     public function getUserByUserInfo($userInfo)
49 49
     {
50
-        return $this->upsertUser($userInfo['profile']);
50
+        return $this->upsertUser($userInfo[ 'profile' ]);
51 51
     }
52 52
 
53 53
     protected function upsertUser($profile)
@@ -56,8 +56,8 @@  discard block
 block discarded – undo
56 56
             throw new BadRequestHttpException('Missing token information: Auth0 user id is not set');
57 57
         }
58 58
         $identifier = explode('|', $profile->user_id);
59
-        $identityProvider = $identifier[0];
60
-        $id = $identifier[1];
59
+        $identityProvider = $identifier[ 0 ];
60
+        $id = $identifier[ 1 ];
61 61
 
62 62
         $user = $this->service->findByIdentityId($id);
63 63
         if ($user === null) {
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
 
94 94
     public function getTestUserToken(): \stdClass
95 95
     {
96
-        return Cache::remember('testing:http_access_token', 60, function () {
96
+        return Cache::remember('testing:http_access_token', 60, function() {
97 97
             try {
98 98
                 $httpClient = new Client();
99 99
                 $response = $httpClient->post(env('AUTH0_DOMAIN').'oauth/token', [
Please login to merge, or discard this patch.
src/Foundation/Console/DemoSeedCommand.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -38,23 +38,23 @@  discard block
 block discarded – undo
38 38
      */
39 39
     public function handle()
40 40
     {
41
-        Model::unguarded(function () {
41
+        Model::unguarded(function() {
42 42
             $seeders = $this->getSeeders();
43 43
 
44
-            $priorities = [];
45
-            $prioritySeeders = [];
46
-            $nonPrioritySeeders = [];
44
+            $priorities = [ ];
45
+            $prioritySeeders = [ ];
46
+            $nonPrioritySeeders = [ ];
47 47
             foreach ($seeders as $seeder) {
48 48
                 $priority = get_class_property($seeder, 'priority');
49 49
                 if (!is_int($priority) && $priority !== null) {
50 50
                     throw new Exception('Priority on seeder must be integer');
51 51
                 } elseif ($priority !== null && in_array($priority, $priorities)) {
52
-                    throw new Exception("Duplicate priority on seeder $seeder with $prioritySeeders[$priority]");
52
+                    throw new Exception("Duplicate priority on seeder $seeder with $prioritySeeders[ $priority ]");
53 53
                 } elseif ($priority === null) {
54
-                    $nonPrioritySeeders[] = $seeder;
54
+                    $nonPrioritySeeders[ ] = $seeder;
55 55
                 } else {
56
-                    $priorities[] = $priority;
57
-                    $prioritySeeders[$priority] = $seeder;
56
+                    $priorities[ ] = $priority;
57
+                    $prioritySeeders[ $priority ] = $seeder;
58 58
                 }
59 59
             }
60 60
             ksort($prioritySeeders);
@@ -75,6 +75,6 @@  discard block
 block discarded – undo
75 75
     {
76 76
         $this->service = $this->laravel->make(BootstrapRegistrarService::class);
77 77
 
78
-        return $this->service->getSeeders() ?? [];
78
+        return $this->service->getSeeders() ?? [ ];
79 79
     }
80 80
 }
Please login to merge, or discard this patch.