Test Failed
Push — master ( 99762a...27f9c8 )
by Kirill
02:27
created
src/Resources/Messages.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@  discard block
 block discarded – undo
4 4
  * For the full copyright and license information, please view the LICENSE
5 5
  * file that was distributed with this source code.
6 6
  */
7
-declare(strict_types=1);
7
+declare(strict_types = 1);
8 8
 
9 9
 namespace Gitter\Resources;
10 10
 
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
     {
92 92
         $route = Route::get('rooms/{roomId}/chatMessages')
93 93
             ->with('roomId', $roomId)
94
-            ->with('limit', (string)$limit);
94
+            ->with('limit', (string) $limit);
95 95
 
96 96
         if ($query !== null) {
97 97
             $route->with('q', $query);
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
                 $route->with('afterId', $afterId);
124 124
             }
125 125
 
126
-            $response = (array)$this->fetch($route);
126
+            $response = (array) $this->fetch($route);
127 127
 
128 128
             foreach ($response as $message) {
129 129
                 yield $message;
Please login to merge, or discard this patch.