Passed
Push — master ( e1611d...0f8a62 )
by Paweł
03:34
created
components/AccountManager.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
         $account->full_name = $data->fullName;
83 83
         $account->biography = $data->biography;
84 84
         $account->external_url = $data->externalUrl;
85
-        $account->instagram_id = (string)$data->id;
85
+        $account->instagram_id = (string) $data->id;
86 86
 
87 87
         $this->updateProfilePic($account);
88 88
 
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
     public function saveUsernames(array $usernames)
173 173
     {
174 174
         $createdAt = (new \DateTime())->format('Y-m-d H:i:s');
175
-        $rows = array_map(function ($username) use ($createdAt) {
175
+        $rows = array_map(function($username) use ($createdAt) {
176 176
             return [
177 177
                 $username,
178 178
                 $createdAt,
Please login to merge, or discard this patch.