Completed
Push — master ( 6ed45b...f0bd58 )
by Nicolaas
01:58
created
code/model/process/OrderStep_SecurityCheck.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
      *
40 40
      * @see Order::doNextStatus
41 41
      *
42
-     * @param Order object
42
+     * @param Order Order
43 43
      *
44 44
      * @return bool - true if the current step is ready to be run...
45 45
      **/
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
      *
68 68
      * @see Order::doNextStatus
69 69
      *
70
-     * @param Order object
70
+     * @param Order Order
71 71
      *
72 72
      * @return bool - true if run correctly.
73 73
      **/
Please login to merge, or discard this patch.
code/model/process/OrderStep_WhitelistCustomer.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
      *
34 34
      * @see Order::doNextStatus
35 35
      *
36
-     * @param Order object
36
+     * @param Order Order
37 37
      *
38 38
      * @return bool - true if the current step is ready to be run...
39 39
      **/
@@ -58,9 +58,9 @@  discard block
 block discarded – undo
58 58
      *
59 59
      * @see Order::doNextStatus
60 60
      *
61
-     * @param Order object
61
+     * @param Order Order
62 62
      *
63
-     * @return bool - true if run correctly.
63
+     * @return null|boolean - true if run correctly.
64 64
      **/
65 65
     public function doStep(Order $order)
66 66
     {
Please login to merge, or discard this patch.
code/model/process/OrderStatusLog_SecurityCheck.php 1 patch
Doc Comments   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -467,7 +467,6 @@  discard block
 block discarded – undo
467 467
      *
468 468
      *
469 469
      *
470
-     * @param  Order $order
471 470
      * @return bool
472 471
      */
473 472
     public function pass()
@@ -579,6 +578,9 @@  discard block
 block discarded – undo
579 578
         }
580 579
     }
581 580
 
581
+    /**
582
+     * @param string $securityClass
583
+     */
582 584
     protected function blacklistCheck($arrayOfValues, $securityClass)
583 585
     {
584 586
         //adding all emails to security checks
Please login to merge, or discard this patch.