Completed
Branch dev-master (7a0f14)
by angel
02:16
created
Instapago/Api.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -209,9 +209,9 @@
 block discarded – undo
209 209
      * Realiza Transaccion
210 210
      * Efectúa y retornar una respuesta a un metodo de pago.
211 211
      *
212
-     * @param $url string endpoint a consultar
212
+     * @param string $url string endpoint a consultar
213 213
      * @param $fields array datos para la consulta
214
-     * @param $method string verbo http de la consulta
214
+     * @param string $method string verbo http de la consulta
215 215
      *
216 216
      * @return array resultados de la transaccion
217 217
      */
Please login to merge, or discard this 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.