Completed
Push — master ( e65225...3fbbc5 )
by Nicolaas
01:53
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/OrderStatusLog_SecurityCheck.php 1 patch
Doc Comments   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -428,7 +428,6 @@  discard block
 block discarded – undo
428 428
      *
429 429
      *
430 430
      *
431
-     * @param  Order $order
432 431
      * @return bool
433 432
      */
434 433
     public function pass()
@@ -509,6 +508,9 @@  discard block
 block discarded – undo
509 508
         return $this->_memberIsWhitelisted;
510 509
     }
511 510
 
511
+    /**
512
+     * @param string $securityClass
513
+     */
512 514
     protected function blacklistCheck($arrayOfValues, $securityClass)
513 515
     {
514 516
         //adding all emails to security checks
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.