Test Setup Failed
Push — testing ( b23bbe...f4ada3 )
by Roman
06:22 queued 03:28
created
src/CassandraConnector.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@
 block discarded – undo
88 88
      */
89 89
     protected function getPort(array $config)
90 90
     {
91
-        return !empty($config['port']) ? (int)$config['port'] : 9042;
91
+        return !empty($config['port']) ? (int) $config['port'] : 9042;
92 92
     }
93 93
 
94 94
     /**
Please login to merge, or discard this patch.
src/Eloquent/Model.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -192,7 +192,7 @@
 block discarded – undo
192 192
     public function newCassandraCollection($rows)
193 193
     {
194 194
         if (!is_array($rows) && !$rows instanceof \Cassandra\Rows) {
195
-            throw new \Exception('Wrong type to create collection');//TODO: customize error
195
+            throw new \Exception('Wrong type to create collection'); //TODO: customize error
196 196
         }
197 197
 
198 198
         return new Collection($rows, $this);
Please login to merge, or discard this patch.