Completed
Pull Request — master (#104)
by Luke
02:31
created
src/LaraCart.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -515,7 +515,7 @@  discard block
 block discarded – undo
515 515
     /**
516 516
      * Gets the total tax for the cart
517 517
      *
518
-     * @param bool|true $format
518
+     * @param boolean $format
519 519
      *
520 520
      * @return string
521 521
      */
@@ -702,7 +702,7 @@  discard block
 block discarded – undo
702 702
      *
703 703
      * @param $itemModel
704 704
      *
705
-     * @return bool
705
+     * @return boolean|null
706 706
      */
707 707
     private function isItemModel($itemModel)
708 708
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -726,7 +726,7 @@
 block discarded – undo
726 726
             $itemOptions[$option] = $itemModel->$option;
727 727
         }
728 728
 
729
-        return array_filter($itemOptions, function ($value) {
729
+        return array_filter($itemOptions, function($value) {
730 730
             if ($value !== false && empty($value)) {
731 731
                 return false;
732 732
             }
Please login to merge, or discard this patch.