Completed
Pull Request — master (#19)
by
unknown
01:39
created
Instapago/Api.php 4 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -199,9 +199,9 @@
 block discarded – undo
199 199
    * Realiza Transaccion
200 200
    * Efectúa y retornar una respuesta a un metodo de pago.
201 201
    *
202
-   * @param $url endpoint a consultar
202
+   * @param string $url endpoint a consultar
203 203
    * @param $fields datos para la consulta
204
-   * @param $method verbo http de la consulta
204
+   * @param string $method verbo http de la consulta
205 205
    *
206 206
    * @return $obj array resultados de la transaccion
207 207
    */
Please login to merge, or discard this patch.
Indentation   +116 added lines, -116 removed lines patch added patch discarded remove patch
@@ -47,11 +47,11 @@  discard block
 block discarded – undo
47 47
    *                            Requeridas.
48 48
    */
49 49
   public function __construct($keyId, $publicKeyId) {
50
-    if ( empty($keyId) || empty($publicKeyId) ) {
51
-      throw new Exceptions\InstapagoException('Los parámetros "keyId" y "publicKeyId" son requeridos para procesar la petición.');
52
-    }
53
-    $this->publicKeyId = $publicKeyId;
54
-    $this->keyId = $keyId;
50
+	if ( empty($keyId) || empty($publicKeyId) ) {
51
+	  throw new Exceptions\InstapagoException('Los parámetros "keyId" y "publicKeyId" son requeridos para procesar la petición.');
52
+	}
53
+	$this->publicKeyId = $publicKeyId;
54
+	$this->keyId = $keyId;
55 55
   }
56 56
 
57 57
   /**
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
    */
65 65
   public function directPayment($fields)
66 66
   {
67
-    return $this->payment('direct', $fields);
67
+	return $this->payment('direct', $fields);
68 68
   }
69 69
 
70 70
   /**
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
    */
78 78
   public function reservePayment($fields)
79 79
   {
80
-    return $this->payment('reserve', $fields);
80
+	return $this->payment('reserve', $fields);
81 81
   }
82 82
 
83 83
   /**
@@ -91,31 +91,31 @@  discard block
 block discarded – undo
91 91
    */
92 92
 
93 93
   private function payment($paymentType, $fields) {
94
-    $type = '2';
95
-    if ($paymentType == 'reserve') {
96
-      $type = '1';
97
-    }
94
+	$type = '2';
95
+	if ($paymentType == 'reserve') {
96
+	  $type = '1';
97
+	}
98 98
 
99
-    (new Validator())->payment()->validate($fields);
99
+	(new Validator())->payment()->validate($fields);
100 100
 
101
-    $fields = [
102
-      'KeyID'          => $this->keyId, 
103
-      'PublicKeyId'    => $this->publicKeyId, 
104
-      'amount'         => $fields['amount'], 
105
-      'description'    => $fields['description'], 
106
-      'cardHolder'     => $fields['card_holder'], 
107
-      'cardHolderId'   => $fields['card_holder_id'], 
108
-      'cardNumber'     => $fields['card_number'], 
109
-      'cvc'            => $fields['cvc'], 
110
-      'expirationDate' => $fields['expiration'], 
111
-      'statusId'       => $type, 
112
-      'IP'             => $fields['ip'], 
113
-    ];
101
+	$fields = [
102
+	  'KeyID'          => $this->keyId, 
103
+	  'PublicKeyId'    => $this->publicKeyId, 
104
+	  'amount'         => $fields['amount'], 
105
+	  'description'    => $fields['description'], 
106
+	  'cardHolder'     => $fields['card_holder'], 
107
+	  'cardHolderId'   => $fields['card_holder_id'], 
108
+	  'cardNumber'     => $fields['card_number'], 
109
+	  'cvc'            => $fields['cvc'], 
110
+	  'expirationDate' => $fields['expiration'], 
111
+	  'statusId'       => $type, 
112
+	  'IP'             => $fields['ip'], 
113
+	];
114 114
 
115
-    $obj = $this->curlTransaccion('payment', $fields, 'POST');
116
-    $result = $this->checkResponseCode($obj);
115
+	$obj = $this->curlTransaccion('payment', $fields, 'POST');
116
+	$result = $this->checkResponseCode($obj);
117 117
 
118
-    return $result;
118
+	return $result;
119 119
   }
120 120
 
121 121
   /**
@@ -129,17 +129,17 @@  discard block
 block discarded – undo
129 129
    * @throws Exceptions\InstapagoException
130 130
    */
131 131
   public function continuePayment($fields){
132
-    (new Validator())->release()->validate($fields);
133
-    $fields = [
134
-      'KeyID'        => $this->keyId, //required
135
-      'PublicKeyId'  => $this->publicKeyId, //required
136
-      'id'           => $fields['id'], //required
137
-      'amount'       => $fields['amount'], //required
138
-    ];
132
+	(new Validator())->release()->validate($fields);
133
+	$fields = [
134
+	  'KeyID'        => $this->keyId, //required
135
+	  'PublicKeyId'  => $this->publicKeyId, //required
136
+	  'id'           => $fields['id'], //required
137
+	  'amount'       => $fields['amount'], //required
138
+	];
139 139
 
140
-    $obj = $this->curlTransaccion('complete', $fields, 'POST');
141
-    $result = $this->checkResponseCode($obj);
142
-    return $result;
140
+	$obj = $this->curlTransaccion('complete', $fields, 'POST');
141
+	$result = $this->checkResponseCode($obj);
142
+	return $result;
143 143
   }
144 144
 
145 145
   /**
@@ -152,19 +152,19 @@  discard block
 block discarded – undo
152 152
    * @throws Exceptions\InstapagoException
153 153
    */
154 154
   public function query($id_pago) {
155
-    (new Validator())->query()->validate([
156
-      'id' => $id_pago
157
-    ]);
155
+	(new Validator())->query()->validate([
156
+	  'id' => $id_pago
157
+	]);
158 158
 
159
-    $fields = [
160
-      'KeyID'        => $this->keyId, //required
161
-      'PublicKeyId'  => $this->publicKeyId, //required
162
-      'id'           => $id_pago, //required
163
-    ];
159
+	$fields = [
160
+	  'KeyID'        => $this->keyId, //required
161
+	  'PublicKeyId'  => $this->publicKeyId, //required
162
+	  'id'           => $id_pago, //required
163
+	];
164 164
 
165
-    $obj = $this->curlTransaccion('payment', $fields, 'GET');
166
-    $result = $this->checkResponseCode($obj);
167
-    return $result;
165
+	$obj = $this->curlTransaccion('payment', $fields, 'GET');
166
+	$result = $this->checkResponseCode($obj);
167
+	return $result;
168 168
   }
169 169
 
170 170
   /**
@@ -176,19 +176,19 @@  discard block
 block discarded – undo
176 176
    * @throws Exceptions\InstapagoException
177 177
    */
178 178
   public function cancel($id_pago) {
179
-    (new Validator())->query()->validate([
180
-      'id' => $id_pago
181
-    ]);
179
+	(new Validator())->query()->validate([
180
+	  'id' => $id_pago
181
+	]);
182 182
 
183
-    $fields = [
184
-      'KeyID'        => $this->keyId, //required
185
-      'PublicKeyId'  => $this->publicKeyId, //required
186
-      'id'           => $id_pago, //required
187
-    ];
183
+	$fields = [
184
+	  'KeyID'        => $this->keyId, //required
185
+	  'PublicKeyId'  => $this->publicKeyId, //required
186
+	  'id'           => $id_pago, //required
187
+	];
188 188
 
189
-    $obj = $this->curlTransaccion('payment', $fields, 'DELETE');
190
-    $result = $this->checkResponseCode($obj);
191
-    return $result;
189
+	$obj = $this->curlTransaccion('payment', $fields, 'DELETE');
190
+	$result = $this->checkResponseCode($obj);
191
+	return $result;
192 192
   }
193 193
 
194 194
   /**
@@ -203,32 +203,32 @@  discard block
 block discarded – undo
203 203
    */
204 204
   public function curlTransaccion($url, $fields, $method)
205 205
   {
206
-    $client = new Client([
207
-       'base_uri' => 'https://api.instapago.com/',
208
-    ]);
206
+	$client = new Client([
207
+	   'base_uri' => 'https://api.instapago.com/',
208
+	]);
209 209
 
210
-    $args = [];
210
+	$args = [];
211 211
     
212
-    if ($method == 'GET') {
213
-      $args = [
214
-        'query' => $fields
215
-      ];
216
-    }else if ($method == 'POST' || $method == 'DELETE') {
217
-      $args = [
218
-          'form_params' => $fields
219
-      ];
220
-    }else{
221
-      throw new Exception("Not implemented yet", 1);
222
-    }
212
+	if ($method == 'GET') {
213
+	  $args = [
214
+		'query' => $fields
215
+	  ];
216
+	}else if ($method == 'POST' || $method == 'DELETE') {
217
+	  $args = [
218
+		  'form_params' => $fields
219
+	  ];
220
+	}else{
221
+	  throw new Exception("Not implemented yet", 1);
222
+	}
223 223
     
224
-    try {
225
-      $request = $client->request($method, $url, $args);
226
-      $body = $request->getBody()->getContents();
227
-      $obj = json_decode($body);
228
-      return $obj;
229
-    } catch (\GuzzleHttp\Exception\ConnectException $e) {
230
-      throw new Exceptions\TimeoutException("Cannot connect to api.instapago.com");
231
-    }
224
+	try {
225
+	  $request = $client->request($method, $url, $args);
226
+	  $body = $request->getBody()->getContents();
227
+	  $obj = json_decode($body);
228
+	  return $obj;
229
+	} catch (\GuzzleHttp\Exception\ConnectException $e) {
230
+	  throw new Exceptions\TimeoutException("Cannot connect to api.instapago.com");
231
+	}
232 232
   }
233 233
 
234 234
   /**
@@ -240,40 +240,40 @@  discard block
 block discarded – undo
240 240
    */
241 241
   public function checkResponseCode($obj)
242 242
   {
243
-    $code = $obj->code;
243
+	$code = $obj->code;
244 244
 
245
-    if ($code == 400) {
246
-      throw new Exceptions\InvalidInputException(
247
-        'Error al validar los datos enviados.'
248
-      );
249
-    }else if ($code == 401) {
250
-      throw new Exceptions\AuthException(
251
-        'Error de autenticación, ha ocurrido un error'
252
-        . ' con las llaves utilizadas.');
253
-    }else if ($code == 403) {
254
-      throw new Exceptions\BankRejectException(
255
-        'Pago Rechazado por el banco.'
256
-      );
257
-    }else if ($code == 500) {
258
-      throw new Exceptions\InstapagoException(
259
-        'Ha Ocurrido un error interno dentro del servidor.'
260
-      );
261
-    }else if ($code == 503) {
262
-      throw new Exceptions\InstapagoException(
263
-        'Ha Ocurrido un error al procesar los parámetros de entrada.'
264
-        . ' Revise los datos enviados y vuelva a intentarlo.'
265
-      );
266
-    }else if ($code == 201) {
267
-      return [
268
-        'code'         => $code,
269
-        'msg_banco'    => $obj->message,
270
-        'voucher'      => html_entity_decode($obj->voucher),
271
-        'id_pago'      => $obj->id,
272
-        'reference'    => $obj->reference,
273
-      ];
274
-    }else {
275
-      throw new \Exception('Not implemented yet');
276
-    }
245
+	if ($code == 400) {
246
+	  throw new Exceptions\InvalidInputException(
247
+		'Error al validar los datos enviados.'
248
+	  );
249
+	}else if ($code == 401) {
250
+	  throw new Exceptions\AuthException(
251
+		'Error de autenticación, ha ocurrido un error'
252
+		. ' con las llaves utilizadas.');
253
+	}else if ($code == 403) {
254
+	  throw new Exceptions\BankRejectException(
255
+		'Pago Rechazado por el banco.'
256
+	  );
257
+	}else if ($code == 500) {
258
+	  throw new Exceptions\InstapagoException(
259
+		'Ha Ocurrido un error interno dentro del servidor.'
260
+	  );
261
+	}else if ($code == 503) {
262
+	  throw new Exceptions\InstapagoException(
263
+		'Ha Ocurrido un error al procesar los parámetros de entrada.'
264
+		. ' Revise los datos enviados y vuelva a intentarlo.'
265
+	  );
266
+	}else if ($code == 201) {
267
+	  return [
268
+		'code'         => $code,
269
+		'msg_banco'    => $obj->message,
270
+		'voucher'      => html_entity_decode($obj->voucher),
271
+		'id_pago'      => $obj->id,
272
+		'reference'    => $obj->reference,
273
+	  ];
274
+	}else {
275
+	  throw new \Exception('Not implemented yet');
276
+	}
277 277
   }
278 278
 
279 279
 }
Please login to merge, or discard this patch.
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
    *                            Requeridas.
48 48
    */
49 49
   public function __construct($keyId, $publicKeyId) {
50
-    if ( empty($keyId) || empty($publicKeyId) ) {
50
+    if (empty($keyId) || empty($publicKeyId)) {
51 51
       throw new Exceptions\InstapagoException('Los parámetros "keyId" y "publicKeyId" son requeridos para procesar la petición.');
52 52
     }
53 53
     $this->publicKeyId = $publicKeyId;
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
    * @return \ArrayObject<string, string> Respuesta de Instapago
129 129
    * @throws Exceptions\InstapagoException
130 130
    */
131
-  public function continuePayment($fields){
131
+  public function continuePayment($fields) {
132 132
     (new Validator())->release()->validate($fields);
133 133
     $fields = [
134 134
       'KeyID'        => $this->keyId, //required
@@ -213,11 +213,11 @@  discard block
 block discarded – undo
213 213
       $args = [
214 214
         'query' => $fields
215 215
       ];
216
-    }else if ($method == 'POST' || $method == 'DELETE') {
216
+    } else if ($method == 'POST' || $method == 'DELETE') {
217 217
       $args = [
218 218
           'form_params' => $fields
219 219
       ];
220
-    }else{
220
+    } else {
221 221
       throw new Exception("Not implemented yet", 1);
222 222
     }
223 223
     
@@ -246,24 +246,24 @@  discard block
 block discarded – undo
246 246
       throw new Exceptions\InvalidInputException(
247 247
         'Error al validar los datos enviados.'
248 248
       );
249
-    }else if ($code == 401) {
249
+    } else if ($code == 401) {
250 250
       throw new Exceptions\AuthException(
251 251
         'Error de autenticación, ha ocurrido un error'
252 252
         . ' con las llaves utilizadas.');
253
-    }else if ($code == 403) {
253
+    } else if ($code == 403) {
254 254
       throw new Exceptions\BankRejectException(
255 255
         'Pago Rechazado por el banco.'
256 256
       );
257
-    }else if ($code == 500) {
257
+    } else if ($code == 500) {
258 258
       throw new Exceptions\InstapagoException(
259 259
         'Ha Ocurrido un error interno dentro del servidor.'
260 260
       );
261
-    }else if ($code == 503) {
261
+    } else if ($code == 503) {
262 262
       throw new Exceptions\InstapagoException(
263 263
         'Ha Ocurrido un error al procesar los parámetros de entrada.'
264 264
         . ' Revise los datos enviados y vuelva a intentarlo.'
265 265
       );
266
-    }else if ($code == 201) {
266
+    } else if ($code == 201) {
267 267
       return [
268 268
         'code'         => $code,
269 269
         'msg_banco'    => $obj->message,
@@ -271,7 +271,7 @@  discard block
 block discarded – undo
271 271
         'id_pago'      => $obj->id,
272 272
         'reference'    => $obj->reference,
273 273
       ];
274
-    }else {
274
+    } else {
275 275
       throw new \Exception('Not implemented yet');
276 276
     }
277 277
   }
Please login to merge, or discard this patch.
Braces   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -213,11 +213,11 @@  discard block
 block discarded – undo
213 213
       $args = [
214 214
         'query' => $fields
215 215
       ];
216
-    }else if ($method == 'POST' || $method == 'DELETE') {
216
+    } else if ($method == 'POST' || $method == 'DELETE') {
217 217
       $args = [
218 218
           'form_params' => $fields
219 219
       ];
220
-    }else{
220
+    } else{
221 221
       throw new Exception("Not implemented yet", 1);
222 222
     }
223 223
     
@@ -246,24 +246,24 @@  discard block
 block discarded – undo
246 246
       throw new Exceptions\InvalidInputException(
247 247
         'Error al validar los datos enviados.'
248 248
       );
249
-    }else if ($code == 401) {
249
+    } else if ($code == 401) {
250 250
       throw new Exceptions\AuthException(
251 251
         'Error de autenticación, ha ocurrido un error'
252 252
         . ' con las llaves utilizadas.');
253
-    }else if ($code == 403) {
253
+    } else if ($code == 403) {
254 254
       throw new Exceptions\BankRejectException(
255 255
         'Pago Rechazado por el banco.'
256 256
       );
257
-    }else if ($code == 500) {
257
+    } else if ($code == 500) {
258 258
       throw new Exceptions\InstapagoException(
259 259
         'Ha Ocurrido un error interno dentro del servidor.'
260 260
       );
261
-    }else if ($code == 503) {
261
+    } else if ($code == 503) {
262 262
       throw new Exceptions\InstapagoException(
263 263
         'Ha Ocurrido un error al procesar los parámetros de entrada.'
264 264
         . ' Revise los datos enviados y vuelva a intentarlo.'
265 265
       );
266
-    }else if ($code == 201) {
266
+    } else if ($code == 201) {
267 267
       return [
268 268
         'code'         => $code,
269 269
         'msg_banco'    => $obj->message,
@@ -271,7 +271,7 @@  discard block
 block discarded – undo
271 271
         'id_pago'      => $obj->id,
272 272
         'reference'    => $obj->reference,
273 273
       ];
274
-    }else {
274
+    } else {
275 275
       throw new \Exception('Not implemented yet');
276 276
     }
277 277
   }
Please login to merge, or discard this patch.
Instapago/Exceptions/InvalidInputException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,4 +31,4 @@
 block discarded – undo
31 31
 /**
32 32
  * Custom InvalidInputException.
33 33
  */
34
-class InvalidInputException extends \Exception{}
34
+class InvalidInputException extends \Exception {}
Please login to merge, or discard this patch.
Instapago/Exceptions/ValidationException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,4 +31,4 @@
 block discarded – undo
31 31
 /**
32 32
  * Custom ValidationException.
33 33
  */
34
-class ValidationException extends \Exception{}
34
+class ValidationException extends \Exception {}
Please login to merge, or discard this patch.
Instapago/Exceptions/BankRejectException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,4 +31,4 @@
 block discarded – undo
31 31
 /**
32 32
  * Custom BankRejectException.
33 33
  */
34
-class BankRejectException extends \Exception{}
34
+class BankRejectException extends \Exception {}
Please login to merge, or discard this patch.
Instapago/Exceptions/AuthException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,4 +31,4 @@
 block discarded – undo
31 31
 /**
32 32
  * Custom AuthException.
33 33
  */
34
-class AuthException extends \Exception{}
34
+class AuthException extends \Exception {}
Please login to merge, or discard this patch.
Instapago/Exceptions/TimeoutException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,4 +31,4 @@
 block discarded – undo
31 31
 /**
32 32
  * Custom TimeoutException.
33 33
  */
34
-class TimeoutException extends \Exception{}
34
+class TimeoutException extends \Exception {}
Please login to merge, or discard this patch.
Instapago/Exceptions/InstapagoException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,4 +31,4 @@
 block discarded – undo
31 31
 /**
32 32
  * Custom InstapagoException.
33 33
  */
34
-class InstapagoException extends \Exception{}
34
+class InstapagoException extends \Exception {}
Please login to merge, or discard this patch.
Instapago/Validator.php 2 patches
Indentation   +35 added lines, -35 removed lines patch added patch discarded remove patch
@@ -38,54 +38,54 @@
 block discarded – undo
38 38
   protected $validations = [];
39 39
 
40 40
   public function payment() {
41
-    $this->validations = [
42
-      'amount' => [FILTER_VALIDATE_FLOAT],
43
-      'description' => [FILTER_VALIDATE_REGEXP, '/^(.{0,140})$/'],
44
-      'card_holder' => [FILTER_VALIDATE_REGEXP, '/^([a-zA-Z\ ]+)$/'],
45
-      'card_holder_id' => [FILTER_VALIDATE_REGEXP, '/^(\d{5,8})$/'],
46
-      'card_number' => [FILTER_VALIDATE_REGEXP, '/^(\d{16})$/'],
47
-      'cvc' => [FILTER_VALIDATE_INT],
48
-      'expiration' => [FILTER_VALIDATE_REGEXP, '/^(\d{2})\/(\d{4})$/'],
49
-      'ip' => [FILTER_VALIDATE_IP],
50
-    ];
51
-    return $this;
41
+	$this->validations = [
42
+	  'amount' => [FILTER_VALIDATE_FLOAT],
43
+	  'description' => [FILTER_VALIDATE_REGEXP, '/^(.{0,140})$/'],
44
+	  'card_holder' => [FILTER_VALIDATE_REGEXP, '/^([a-zA-Z\ ]+)$/'],
45
+	  'card_holder_id' => [FILTER_VALIDATE_REGEXP, '/^(\d{5,8})$/'],
46
+	  'card_number' => [FILTER_VALIDATE_REGEXP, '/^(\d{16})$/'],
47
+	  'cvc' => [FILTER_VALIDATE_INT],
48
+	  'expiration' => [FILTER_VALIDATE_REGEXP, '/^(\d{2})\/(\d{4})$/'],
49
+	  'ip' => [FILTER_VALIDATE_IP],
50
+	];
51
+	return $this;
52 52
   }
53 53
 
54 54
   public function release(){
55
-    $this->validations = [
56
-      'amount' => [FILTER_VALIDATE_FLOAT],
57
-      'id' => [FILTER_VALIDATE_REGEXP, '/^([0-9a-f]{8})\-([0-9a-f]{4})\-([0-9a-f]{4})\-([0-9a-f]{4})\-([0-9a-f]{12})$/'],
58
-    ];
59
-    return $this;
55
+	$this->validations = [
56
+	  'amount' => [FILTER_VALIDATE_FLOAT],
57
+	  'id' => [FILTER_VALIDATE_REGEXP, '/^([0-9a-f]{8})\-([0-9a-f]{4})\-([0-9a-f]{4})\-([0-9a-f]{4})\-([0-9a-f]{12})$/'],
58
+	];
59
+	return $this;
60 60
   }
61 61
 
62 62
   public function query(){
63
-    $this->validations = [
64
-      'id' => [FILTER_VALIDATE_REGEXP, '/^([0-9a-f]{8})\-([0-9a-f]{4})\-([0-9a-f]{4})\-([0-9a-f]{4})\-([0-9a-f]{12})$/'],
65
-    ];
66
-    return $this;
63
+	$this->validations = [
64
+	  'id' => [FILTER_VALIDATE_REGEXP, '/^([0-9a-f]{8})\-([0-9a-f]{4})\-([0-9a-f]{4})\-([0-9a-f]{4})\-([0-9a-f]{12})$/'],
65
+	];
66
+	return $this;
67 67
   }
68 68
 
69 69
   public function validate($fields){
70
-    foreach ($this->validations as $key => $filters) {
71
-      if ( !$this->_validation($fields[$key], $filters) ){
72
-        throw new Exceptions\ValidationException("Error {$key}: {$fields[$key]}");
73
-      }
74
-    }
70
+	foreach ($this->validations as $key => $filters) {
71
+	  if ( !$this->_validation($fields[$key], $filters) ){
72
+		throw new Exceptions\ValidationException("Error {$key}: {$fields[$key]}");
73
+	  }
74
+	}
75 75
 
76 76
   }
77 77
 
78 78
   private function _validation ($value, $filters)
79 79
   {
80
-    $filter = $filters[0];
81
-    $flags = [];
82
-    if ($filter === FILTER_VALIDATE_REGEXP) {
83
-      $flags = [
84
-        "options" => [
85
-          "regexp"=> $filters[1],
86
-        ],
87
-      ];
88
-    }
89
-    return filter_var($value, $filter, $flags);
80
+	$filter = $filters[0];
81
+	$flags = [];
82
+	if ($filter === FILTER_VALIDATE_REGEXP) {
83
+	  $flags = [
84
+		"options" => [
85
+		  "regexp"=> $filters[1],
86
+		],
87
+	  ];
88
+	}
89
+	return filter_var($value, $filter, $flags);
90 90
   }
91 91
 }
92 92
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
     return $this;
52 52
   }
53 53
 
54
-  public function release(){
54
+  public function release() {
55 55
     $this->validations = [
56 56
       'amount' => [FILTER_VALIDATE_FLOAT],
57 57
       'id' => [FILTER_VALIDATE_REGEXP, '/^([0-9a-f]{8})\-([0-9a-f]{4})\-([0-9a-f]{4})\-([0-9a-f]{4})\-([0-9a-f]{12})$/'],
@@ -59,23 +59,23 @@  discard block
 block discarded – undo
59 59
     return $this;
60 60
   }
61 61
 
62
-  public function query(){
62
+  public function query() {
63 63
     $this->validations = [
64 64
       'id' => [FILTER_VALIDATE_REGEXP, '/^([0-9a-f]{8})\-([0-9a-f]{4})\-([0-9a-f]{4})\-([0-9a-f]{4})\-([0-9a-f]{12})$/'],
65 65
     ];
66 66
     return $this;
67 67
   }
68 68
 
69
-  public function validate($fields){
69
+  public function validate($fields) {
70 70
     foreach ($this->validations as $key => $filters) {
71
-      if ( !$this->_validation($fields[$key], $filters) ){
71
+      if ( ! $this->_validation($fields[$key], $filters)) {
72 72
         throw new Exceptions\ValidationException("Error {$key}: {$fields[$key]}");
73 73
       }
74 74
     }
75 75
 
76 76
   }
77 77
 
78
-  private function _validation ($value, $filters)
78
+  private function _validation($value, $filters)
79 79
   {
80 80
     $filter = $filters[0];
81 81
     $flags = [];
Please login to merge, or discard this patch.