Completed
Push — master ( 331c57...61acc3 )
by
unknown
02:37
created
code/RepeatOrdersPage.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,6 @@
 block discarded – undo
36 36
      * Return a link to view the order on the account page.
37 37
      * actions are: create, update, view
38 38
      * @param String $action
39
-     * @param int|string $orderID ID of the order
40 39
      */
41 40
     public static function get_repeat_order_link($action = 'view', $repeatOrderID = 0)
42 41
     {
Please login to merge, or discard this patch.
code/forms/RepeatOrderForm.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -190,6 +190,9 @@
 block discarded – undo
190 190
         return $fields;
191 191
     }
192 192
 
193
+    /**
194
+     * @param DataObject $repeatOrder
195
+     */
193 196
     public static function repeatOrderFormActions($label = '', $repeatOrder = null)
194 197
     {
195 198
         //actions
Please login to merge, or discard this patch.
code/model/RepeatOrderOrderItem.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
     }
66 66
 
67 67
     /**
68
-     * @return Field (EcomQuantityField)
68
+     * @return HiddenField (EcomQuantityField)
69 69
      **/
70 70
     public function IDField()
71 71
     {
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
     }
79 79
 
80 80
     /**
81
-     * @return Field (EcomQuantityField)
81
+     * @return NumericField (EcomQuantityField)
82 82
      **/
83 83
     public function QuantityField()
84 84
     {
Please login to merge, or discard this patch.
code/model/RepeatOrdersTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
      * Returns all {@link Order} records for this
11 11
      * member that are completed.
12 12
      *
13
-     * @return ArrayList
13
+     * @return DataList
14 14
      */
15 15
     public function RepeatOrders()
16 16
     {
Please login to merge, or discard this patch.