Completed
Push — master ( 24fd6c...1831b9 )
by Nicolaas
03:24
created
code/tasks/EcommerceTaskTryToFinaliseOrders.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -96,6 +96,11 @@
 block discarded – undo
96 96
     }
97 97
 
98 98
 
99
+    /**
100
+     * @param DataList $orders
101
+     * @param integer|null $limit
102
+     * @param integer|null $startAt
103
+     */
99 104
     protected function tryToFinaliseOrders($orders, $limit, $startAt)
100 105
     {
101 106
         $orders = $orders->limit($limit, $startAt);
Please login to merge, or discard this patch.
code/model/process/OrderProcessQueue.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
      * If the order already exists, it will update the seconds and the creation  time.
152 152
      *
153 153
      * @param Order $order          [description]
154
-     * @param Int   $deferInSeconds [description]
154
+     * @param Int   $deferTimeInSeconds [description]
155 155
      */
156 156
     public function AddOrderToQueue($order, $deferTimeInSeconds)
157 157
     {
@@ -196,7 +196,7 @@  discard block
 block discarded – undo
196 196
      *
197 197
      * @param  Order $order
198 198
      *
199
-     * @return null |   OrderProcessQueue
199
+     * @return DataObject|null |   OrderProcessQueue
200 200
      */
201 201
     public function getQueueObject($order)
202 202
     {
Please login to merge, or discard this patch.