Completed
Push — master ( 4a945d...f56bff )
by Andrii
02:24
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.
tests/unit/plan/CertificatePlan.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -81,6 +81,10 @@
 block discarded – undo
81 81
         parent::__construct(null, 'Test Certificate Plan', $this->seller, $prices);
82 82
     }
83 83
 
84
+    /**
85
+     * @param string $typeName
86
+     * @param string $targetName
87
+     */
84 88
     public function getRawPrices($typeName, $targetName)
85 89
     {
86 90
         return $this->rawPrices[$typeName . '_' . $targetName];
Please login to merge, or discard this patch.