Completed
Push — master ( e07e94...da296e )
by Dmitry
14:47
created
src/plan/PlanRepositoryInterface.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,6 @@
 block discarded – undo
26 26
 
27 27
     /**
28 28
      * Finds suitable plans for given order: customer + actions.
29
-     * @param ActionInterface $action
30 29
      * @return PlanInterface[] array: actionKey => plan
31 30
      */
32 31
     public function findByOrder(OrderInterface $order);
Please login to merge, or discard this patch.
src/type/Type.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
     }
43 43
 
44 44
     /**
45
-     * @return string
45
+     * @return boolean
46 46
      */
47 47
     public function equals(TypeInterface $other)
48 48
     {
Please login to merge, or discard this patch.
src/price/EnumPrice.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -43,6 +43,9 @@
 block discarded – undo
43 43
      */
44 44
     protected $sums;
45 45
 
46
+    /**
47
+     * @param string|null $id
48
+     */
46 49
     public function __construct(
47 50
                             $id,
48 51
         TypeInterface       $type,
Please login to merge, or discard this patch.
src/plan/Plan.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,6 @@
 block discarded – undo
13 13
 use hiqdev\php\billing\action\ActionInterface;
14 14
 use hiqdev\php\billing\charge\Charge;
15 15
 use hiqdev\php\billing\charge\ChargeInterface;
16
-use hiqdev\php\billing\charge\ChargeModifier;
17 16
 use hiqdev\php\billing\customer\CustomerInterface;
18 17
 use hiqdev\php\billing\price\PriceInterface;
19 18
 
Please login to merge, or discard this patch.
src/charge/modifiers/GrowingDiscount.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -82,6 +82,9 @@
 block discarded – undo
82 82
 
83 83
     }
84 84
 
85
+    /**
86
+     * @param string $name
87
+     */
85 88
     public function ensureValidLimit($limit, $name)
86 89
     {
87 90
         $limit = static::ensureValidValue($limit);
Please login to merge, or discard this patch.