@@ -39,8 +39,8 @@ discard block |
||
| 39 | 39 | { |
| 40 | 40 | parent::__construct([ |
| 41 | 41 | 'content' => $content, |
| 42 | - 'mentioned_list' => (array)$userIds, |
|
| 43 | - 'mentioned_mobile_list' => (array)$mobiles, |
|
| 42 | + 'mentioned_list' => (array) $userIds, |
|
| 43 | + 'mentioned_mobile_list' => (array) $mobiles, |
|
| 44 | 44 | ]); |
| 45 | 45 | } |
| 46 | 46 | |
@@ -51,7 +51,7 @@ discard block |
||
| 51 | 51 | */ |
| 52 | 52 | public function mention($userIds) |
| 53 | 53 | { |
| 54 | - $this->set('mentioned_list', (array)$userIds); |
|
| 54 | + $this->set('mentioned_list', (array) $userIds); |
|
| 55 | 55 | |
| 56 | 56 | return $this; |
| 57 | 57 | } |
@@ -63,7 +63,7 @@ discard block |
||
| 63 | 63 | */ |
| 64 | 64 | public function mentionByMobile($mobiles) |
| 65 | 65 | { |
| 66 | - $this->set('mentioned_mobile_list', (array)$mobiles); |
|
| 66 | + $this->set('mentioned_mobile_list', (array) $mobiles); |
|
| 67 | 67 | |
| 68 | 68 | return $this; |
| 69 | 69 | } |