Completed
Push — master ( dbd3cd...b7bc4d )
by Travis
02:58
created
src/NukaCode/Database/Collection.php 1 patch
Doc Comments   +9 added lines, -5 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
      *
21 21
      * @param  string $key
22 22
      *
23
-     * @return mixed
23
+     * @return Collection
24 24
      */
25 25
     public function __get($key)
26 26
     {
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
     /**
136 136
      * Turn the magic getWhere into a real where query.
137 137
      *
138
-     * @param $method
138
+     * @param string $method
139 139
      * @param $args
140 140
      *
141 141
      * @return Collection
@@ -275,10 +275,10 @@  discard block
 block discarded – undo
275 275
 
276 276
     /**
277 277
      * @param $item
278
-     * @param $column
278
+     * @param string $column
279 279
      * @param $value
280
-     * @param $operator
281
-     * @param $inverse
280
+     * @param string $operator
281
+     * @param boolean $inverse
282 282
      *
283 283
      * @return bool
284 284
      */
@@ -397,6 +397,10 @@  discard block
 block discarded – undo
397 397
         return false;
398 398
     }
399 399
 
400
+    /**
401
+     * @param string $column
402
+     * @param boolean $inverse
403
+     */
400 404
     private function getWhereDefault($object, $column, $value, $inverse)
401 405
     {
402 406
         if ($object->$column != $value && $inverse == false) {
Please login to merge, or discard this patch.