Completed
Push — master ( cb1b62...52c941 )
by Travis
03:25
created
src/NukaCode/Database/Collection.php 1 patch
Doc Comments   +10 added lines, -6 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
     {
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
     /**
130 130
      * Turn the magic getWhere into a real where query.
131 131
      *
132
-     * @param $method
132
+     * @param string $method
133 133
      * @param $args
134 134
      *
135 135
      * @return Collection
@@ -269,12 +269,12 @@  discard block
 block discarded – undo
269 269
 
270 270
     /**
271 271
      * @param $item
272
-     * @param $column
272
+     * @param string $column
273 273
      * @param $value
274
-     * @param $operator
275
-     * @param $inverse
274
+     * @param string $operator
275
+     * @param boolean $inverse
276 276
      *
277
-     * @return bool
277
+     * @return boolean|null
278 278
      */
279 279
     private function handleMultiTap($item, $column, $value, $operator, $inverse)
280 280
     {
@@ -391,6 +391,10 @@  discard block
 block discarded – undo
391 391
         return false;
392 392
     }
393 393
 
394
+    /**
395
+     * @param string $column
396
+     * @param boolean $inverse
397
+     */
394 398
     private function getWhereDefault($object, $column, $value, $inverse)
395 399
     {
396 400
         if ($object->$column != $value && $inverse == false) {
Please login to merge, or discard this patch.