@@ -103,7 +103,7 @@ |
||
103 | 103 | $this->messageManager->addErrorMessage(__('Invalid Recaptcha')); |
104 | 104 | $refererUrl = $this->redirector->getRefererUrl(); |
105 | 105 | |
106 | - if(isset($refererUrl) && $refererUrl != '') { |
|
106 | + if (isset($refererUrl) && $refererUrl != '') { |
|
107 | 107 | header('Location: ' . $refererUrl); |
108 | 108 | } |
109 | 109 | die; |
@@ -31,7 +31,7 @@ |
||
31 | 31 | */ |
32 | 32 | public function stringValidationAndCovertInArray($string) |
33 | 33 | { |
34 | - $validate = function ($urls) { |
|
34 | + $validate = function($urls) { |
|
35 | 35 | return preg_split('|\s*[\r\n]+\s*|', $urls, -1, PREG_SPLIT_NO_EMPTY); |
36 | 36 | }; |
37 | 37 |