Completed
Pull Request — master (#138)
by Roma
02:03
created
src/Providers/LinkedinProvider.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
             ],
101 101
         ]);
102 102
 
103
-        return (array) json_decode($response->getBody(), true);
103
+        return (array)json_decode($response->getBody(), true);
104 104
     }
105 105
     /**
106 106
      * Get the email address for the user.
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
             ],
120 120
         ]);
121 121
 
122
-        return (array) $this->arrayItem(json_decode($response->getBody(), true), 'elements.0.handle~');
122
+        return (array)$this->arrayItem(json_decode($response->getBody(), true), 'elements.0.handle~');
123 123
     }
124 124
 
125 125
     /**
@@ -132,12 +132,12 @@  discard block
 block discarded – undo
132 132
         $lastName = $this->arrayItem($user, 'lastName.localized.'.$preferredLocale);
133 133
         $name = $firstName.' '.$lastName;
134 134
 
135
-        $images = (array) $this->arrayItem($user, 'profilePicture.displayImage~.elements', []);
136
-        $avatars = array_filter($images, function ($image) {
135
+        $images = (array)$this->arrayItem($user, 'profilePicture.displayImage~.elements', []);
136
+        $avatars = array_filter($images, function($image) {
137 137
             return $image['data']['com.linkedin.digitalmedia.mediaartifact.StillImage']['storageSize']['width'] === 100;
138 138
         });
139 139
         $avatar = array_shift($avatars);
140
-        $originalAvatars = array_filter($images, function ($image) {
140
+        $originalAvatars = array_filter($images, function($image) {
141 141
             return $image['data']['com.linkedin.digitalmedia.mediaartifact.StillImage']['storageSize']['width'] === 800;
142 142
         });
143 143
         $originalAvatar = array_shift($originalAvatars);
Please login to merge, or discard this patch.