From ee4899a13214a706a64f20fbf54442585ed1d930 Mon Sep 17 00:00:00 2001 From: Erick Carvalho Date: Wed, 30 May 2018 12:33:39 -0300 Subject: [PATCH] Removido atributos de request em createAPI --- lib/Iugu/APIResource.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/Iugu/APIResource.php b/lib/Iugu/APIResource.php index 8676aa9..8caa104 100644 --- a/lib/Iugu/APIResource.php +++ b/lib/Iugu/APIResource.php @@ -80,9 +80,6 @@ protected static function createAPI($attributes = []) 'POST', static::url($attributes), $attributes ) ); - foreach ($attributes as $attr => $value) { - $response[$attr] = $value; - } return $response; }