Passed
Push — master ( c0d123...f3652f )
by Paweł
02:44
created
components/AccountManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -150,7 +150,7 @@
 block discarded – undo
150 150
     public function saveUsernames(array $usernames)
151 151
     {
152 152
         $createdAt = (new \DateTime())->format('Y-m-d H:i:s');
153
-        $rows = array_map(function ($username) use ($createdAt) {
153
+        $rows = array_map(function($username) use ($createdAt) {
154 154
             return [
155 155
                 $username,
156 156
                 $createdAt,
Please login to merge, or discard this patch.
components/instagram/AccountDetails.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
         $account->full_name = $data->fullName;
22 22
         $account->biography = $data->biography;
23 23
         $account->external_url = $data->externalUrl;
24
-        $account->instagram_id = (string)$data->id;
24
+        $account->instagram_id = (string) $data->id;
25 25
 
26 26
         $account->update();
27 27
 
Please login to merge, or discard this patch.