Completed
Push — master ( b23bbe...fdbc4a )
by Roman
09:09
created
src/Eloquent/Builder.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
      *
66 66
      * @param array $columns
67 67
      *
68
-     * @return \Illuminate\Database\Eloquent\Collection|static[]
68
+     * @return \Illuminate\Database\Eloquent\Model[]
69 69
      *
70 70
      * @throws \Exception
71 71
      */
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 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
         $items = [];
Please login to merge, or discard this patch.