Passed
Push — master ( 3691fa...3ed8d1 )
by Paweł
03:04
created
modules/admin/controllers/MonitoringController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -122,7 +122,7 @@
 block discarded – undo
122 122
                     $job = JobFactory::createAccountUpdate($account);
123 123
                     $queue->push($job);
124 124
 
125
-                    $tags = array_filter((array)$form->tags);
125
+                    $tags = array_filter((array) $form->tags);
126 126
                     if ($tags) {
127 127
                         $tagManager = \Yii::createObject(TagManager::class);
128 128
                         $tagManager->saveForAccount($account, $tags, \Yii::$app->user->id);
Please login to merge, or discard this patch.
components/AccountUpdater.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
     public function details(Account $account): \app\models\Account
37 37
     {
38 38
         $this->account->username = $account->username;
39
-        $this->account->instagram_id = (string)$account->id;
39
+        $this->account->instagram_id = (string) $account->id;
40 40
         $this->account->profile_pic_url = $account->profilePicUrl;
41 41
         $this->account->full_name = $account->fullName;
42 42
         $this->account->biography = $account->biography;
Please login to merge, or discard this patch.