Completed
Push — master ( e8361b...ff7832 )
by angel
02:10
created
Instapago/Validator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
76 76
 	public function validate($fields)
77 77
 	{
78 78
 		foreach ($this->validations as $key => $filters) {
79
-			if (!$this->_validation($fields[$key], $filters)) {
79
+			if ( ! $this->_validation($fields[$key], $filters)) {
80 80
 				throw new Exceptions\ValidationException("Error {$key}: {$fields[$key]}");
81 81
 			}
82 82
 		}
Please login to merge, or discard this patch.
Instapago/Api.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -222,7 +222,7 @@
 block discarded – undo
222 222
 	]);
223 223
 
224 224
 	  $args = [];
225
-	  if (!in_array($method, ['GET', 'POST', 'DELETE'])) {
225
+	  if ( ! in_array($method, ['GET', 'POST', 'DELETE'])) {
226 226
 		  throw new Exception('Not implemented yet', 1);
227 227
 	  }
228 228
 	  $key = ($method == 'GET') ? 'query' : 'form_params';
Please login to merge, or discard this patch.