Completed
Pull Request — master (#80)
by butschster
03:06
created
app/Interfaces/Slack/MessageMapper.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -35,13 +35,13 @@
 block discarded – undo
35 35
 
36 36
         $this->attributes = (new AttributeMapper($attributes))
37 37
             ->rename('channel', 'room_id')
38
-            ->value('user', function ($user) use($room) {
38
+            ->value('user', function($user) use($room) {
39 39
                 return $room->client()->getUserById($user);
40 40
             })
41
-            ->value('ts', function ($date) {
41
+            ->value('ts', function($date) {
42 42
                 return Carbon::createFromTimestamp($date)->setTimezone('Europe/Moscow');
43 43
             }, 'created_at')
44
-            ->value('mentions', function ($ids) use($room) {
44
+            ->value('mentions', function($ids) use($room) {
45 45
                 $users = [];
46 46
                 if (is_array($ids)) {
47 47
                     foreach ($ids as $userId) {
Please login to merge, or discard this patch.
app/Interfaces/Gitter/TextParser.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
 
27 27
         $this->text = preg_replace_callback('%\[i\]([\W\D\w\s]*?)\[/i\]%iu',
28 28
 
29
-            function ($matches) {
29
+            function($matches) {
30 30
                 return "_".trim($matches[1], " ")."_";
31 31
             },
32 32
 
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
 
43 43
         $this->text = preg_replace_callback('%\[user\]([\W\D\w\s]*?)\[/user\]%iu',
44 44
 
45
-            function ($matches) {
45
+            function($matches) {
46 46
                 $username = trim($matches[1]);
47 47
 
48 48
                 return empty($username) ? "" : "@{$username}";
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
 
60 60
         $this->text = preg_replace_callback('%\[pre\]([\W\D\w\s]*?)\[/pre\]%iu',
61 61
 
62
-            function ($matches) {
62
+            function($matches) {
63 63
                 return "`{$matches[1]}``";
64 64
             },
65 65
 
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
 
75 75
         $this->text = preg_replace_callback('%\[h([0-6]{1})\]([\W\D\w\s]*?)\[/h[0-6]?\]%iu',
76 76
 
77
-            function ($matches) {
77
+            function($matches) {
78 78
                 $size = $matches[1];
79 79
 
80 80
                 return str_repeat('#', $size).' '.$matches[2].PHP_EOL;
Please login to merge, or discard this patch.
app/Interfaces/Gitter/Client.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
         return [
129 129
             'Content-Type'  => 'application/json',
130 130
             'Accept'        => 'application/json',
131
-            'Authorization' => 'Bearer ' . $this->token,
131
+            'Authorization' => 'Bearer '.$this->token,
132 132
         ];
133 133
     }
134 134
 
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
     {
205 205
         $this
206 206
             ->stream('messages', ['roomId' => $room->id()])
207
-            ->on(Stream::EVENT_MESSAGE, function ($stream, $data) use($room) {
207
+            ->on(Stream::EVENT_MESSAGE, function($stream, $data) use($room) {
208 208
                 $this->onMessage(
209 209
                     $room->middleware(),
210 210
                     Message::unguarded(function() use($room, $data) {
@@ -272,9 +272,9 @@  discard block
 block discarded – undo
272 272
     protected function logException(\Exception $e)
273 273
     {
274 274
         \Log::error(
275
-            $e->getMessage() . ' in ' . $e->getFile() . ':' . $e->getLine() . "\n" .
276
-            $e->getTraceAsString() . "\n" .
277
-            str_repeat('=', 80) . "\n"
275
+            $e->getMessage().' in '.$e->getFile().':'.$e->getLine()."\n".
276
+            $e->getTraceAsString()."\n".
277
+            str_repeat('=', 80)."\n"
278 278
         );
279 279
     }
280 280
 
@@ -285,7 +285,7 @@  discard block
 block discarded – undo
285 285
     public function sendMessage(RoomInterface $room, $message)
286 286
     {
287 287
         $this->request('message.send', ['roomId' => $room->id()], [
288
-            'text' => (string) $this->parser->parse($message),
288
+            'text' => (string)$this->parser->parse($message),
289 289
         ], 'POST');
290 290
     }
291 291
 
Please login to merge, or discard this patch.
app/Interfaces/Gitter/UserMapper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
      */
27 27
     public static function fromGitterObject($attributes)
28 28
     {
29
-        $values = (new AttributeMapper((array) $attributes))
29
+        $values = (new AttributeMapper((array)$attributes))
30 30
             ->rename('id', 'gitter_id')
31 31
             ->rename('username', 'login')
32 32
             ->rename('displayName', 'name')
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
 
37 37
         $user = User::where('gitter_id', $values['gitter_id'])->first();
38 38
         if (!$user) {
39
-            $user = User::unguarded(function () use ($values) {
39
+            $user = User::unguarded(function() use ($values) {
40 40
                 return User::create($values);
41 41
             });
42 42
         }
Please login to merge, or discard this patch.
app/Interfaces/Gitter/StandartGitterRoom.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
         parent::__construct();
28 28
 
29 29
         $this->alias = $alias;
30
-        $this->groups = (array) $groups;
30
+        $this->groups = (array)$groups;
31 31
 
32 32
         $this->setMiddleware($middleware);
33 33
     }
Please login to merge, or discard this patch.
app/Interfaces/Gitter/MessageMapper.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -38,19 +38,19 @@
 block discarded – undo
38 38
         $this->attributes = (new AttributeMapper($attributes))
39 39
             ->rename('readBy', 'read_by')
40 40
             ->rename('id', 'gitter_id')
41
-            ->value('editedAt', function ($val) {
41
+            ->value('editedAt', function($val) {
42 42
                 return !!$val;
43 43
             }, 'edited')
44
-            ->value('fromUser', function ($user) {
44
+            ->value('fromUser', function($user) {
45 45
                 return UserMapper::fromGitterObject($user);
46 46
             }, 'user')
47
-            ->value('sent', function ($date) {
47
+            ->value('sent', function($date) {
48 48
                 return (new Carbon($date))->setTimezone('Europe/Moscow');
49 49
             }, 'created_at')
50
-            ->value('editedAt', function ($date) {
50
+            ->value('editedAt', function($date) {
51 51
                 return (new Carbon($date))->setTimezone('Europe/Moscow');
52 52
             }, 'updated_at')
53
-            ->value('mentions', function ($mentions) {
53
+            ->value('mentions', function($mentions) {
54 54
                 return $this->parseMentions($mentions);
55 55
             })
56 56
             ->only($fields)
Please login to merge, or discard this patch.
app/Interfaces/Console/Commands/StartGitterPool.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
                 $this->stop();
77 77
                 break;
78 78
             default:
79
-                throw new \InvalidArgumentException('Action ' . $action . ' not found');
79
+                throw new \InvalidArgumentException('Action '.$action.' not found');
80 80
         }
81 81
     }
82 82
 
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
             $bg = (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') ? 'start /min /normal' : 'nohup';
90 90
 
91 91
             shell_exec("{$bg} php artisan gitter:listen {$room->id()}");
92
-            $this->line('Starting ' . $room->id() . ' listener.');
92
+            $this->line('Starting '.$room->id().' listener.');
93 93
         }
94 94
     }
95 95
 
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
 
106 106
         foreach ($finder as $file) {
107 107
             $pid = file_get_contents($file->getRealpath());
108
-            shell_exec('kill ' . $pid);
108
+            shell_exec('kill '.$pid);
109 109
             unlink($file->getRealpath());
110 110
         }
111 111
     }
Please login to merge, or discard this patch.
app/Domains/Room/AbstractRoom.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
      */
82 82
     public function groups()
83 83
     {
84
-        return (array) $this->groups;
84
+        return (array)$this->groups;
85 85
     }
86 86
 
87 87
     /**
Please login to merge, or discard this patch.
app/Domains/Middleware/Storage.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -63,11 +63,11 @@  discard block
 block discarded – undo
63 63
         $this->container->bind($class, $class);
64 64
         $instance = $this->container->make($class);
65 65
 
66
-        if (! ($instance instanceof MiddlewareInterface)) {
66
+        if (!($instance instanceof MiddlewareInterface)) {
67 67
             throw new \Exception("Class [{$class}] must be instance of Interfaces\\Gitter\\Middleware\\MiddlewareInterface");
68 68
         }
69 69
 
70
-        if ($instance instanceof MiddlewareGroupableInterface and ! $this->checkMiddlewareGroup($instance)) {
70
+        if ($instance instanceof MiddlewareGroupableInterface and !$this->checkMiddlewareGroup($instance)) {
71 71
             return $this;
72 72
         }
73 73
 
@@ -104,16 +104,16 @@  discard block
 block discarded – undo
104 104
      */
105 105
     protected function checkMiddlewareGroup(MiddlewareGroupableInterface $middleware)
106 106
     {
107
-        $groups = (array) $middleware->getGroup();
107
+        $groups = (array)$middleware->getGroup();
108 108
         $currentGroups = \Config::get('gitter.env');
109 109
 
110 110
         if (is_string($currentGroups)) {
111
-            $currentGroups = array_map(function ($item) {
111
+            $currentGroups = array_map(function($item) {
112 112
                 return trim($item);
113 113
             }, explode(',', $currentGroups));
114 114
         }
115 115
 
116
-        if (! is_array($currentGroups)) {
116
+        if (!is_array($currentGroups)) {
117 117
             return true;
118 118
         }
119 119
 
Please login to merge, or discard this patch.