Completed
Push — master ( 8c9a49...c1ae1c )
by angel
04:08 queued 01:56
created
Instapago/autoload.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -27,8 +27,8 @@
 block discarded – undo
27 27
  * @copyright 2016 Angel Cruz
28 28
  */
29 29
 
30
-spl_autoload_register(function ($class) {
31
-    $file = dirname(__DIR__).DIRECTORY_SEPARATOR.str_replace('\\', DIRECTORY_SEPARATOR, $class).'.php';
30
+spl_autoload_register(function($class) {
31
+    $file = dirname(__DIR__) . DIRECTORY_SEPARATOR . str_replace('\\', DIRECTORY_SEPARATOR, $class) . '.php';
32 32
 
33
-    return (!is_file($file)) ?: require $file;
33
+    return ( ! is_file($file)) ?: require $file;
34 34
 });
Please login to merge, or discard this patch.
Instapago/InstapagoGateway/InstapagoPayment.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -233,11 +233,12 @@
 block discarded – undo
233 233
      * Realiza Transaccion
234 234
      * Efectúa y retornar una respuesta a un metodo de pago.
235 235
      *
236
-     *@param $url endpoint a consultar
236
+     *@param string $url endpoint a consultar
237 237
      *@param $fields datos para la consulta
238 238
      *
239 239
      *@return $obj array resultados de la transaccion
240 240
      * https://github.com/abr4xas/php-instapago/blob/master/help/DOCUMENTACION.md#PENDIENTE
241
+     * @param string $method
241 242
      */
242 243
     public function curlTransaccion($url, $fields, $method)
243 244
     {
Please login to merge, or discard this patch.