@@ -122,7 +122,7 @@ |
||
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); |
@@ -36,7 +36,7 @@ |
||
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; |