diff --git a/src/Traits/CanRequest.php b/src/Traits/CanRequest.php index 8656d9a..a38db73 100644 --- a/src/Traits/CanRequest.php +++ b/src/Traits/CanRequest.php @@ -37,7 +37,6 @@ public function __call($method, $arguments) { $method = ucfirst($method); - print_r(array_merge($this->constructor_arguments, isset($arguments[0]) ? $arguments[0] : [], ['format' => 'json', 'login_token' => $this->sdk->getAuthorizationValue(),])); $call = $this->getHttpClient()->post(join('.', [ucfirst($this->resource), $method]), [ RequestOptions::FORM_PARAMS => array_merge($this->constructor_arguments, isset($arguments[0]) ? $arguments[0] : [], ['format' => 'json', 'login_token' => $this->sdk->getAuthorizationValue(),]), ]);