Completed
Push — master ( efd5b5...1cc014 )
by Andrii
02:16
created
src/charge/modifiers/Discount.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -19,11 +19,17 @@
 block discarded – undo
19 19
  */
20 20
 class Discount extends Modifier
21 21
 {
22
+    /**
23
+     * @param integer $value
24
+     */
22 25
     public function fixed($value)
23 26
     {
24 27
         return new FixedDiscount($value, $this->addons);
25 28
     }
26 29
 
30
+    /**
31
+     * @param integer $step
32
+     */
27 33
     public function grows($step, $start = null)
28 34
     {
29 35
         return new GrowingDiscount($step, $start, $this->addons);
Please login to merge, or discard this patch.