Passed
Push — master ( 85e933...e19d09 )
by Carlos
01:46 queued 15s
created
src/Work/GroupRobot/Messages/Text.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -39,8 +39,8 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.