PHP code example of cct-marketing / rest-exception-handler
1. Go to this page and download the library: Download cct-marketing/rest-exception-handler library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
cct-marketing / rest-exception-handler example snippets
use CCT\Component\Rest\AbstractClient;
use CCT\Component\Rest\Config;
class RESTClient extends AbstractClient
{
/**
* @return ScrapeRequest
*/
public function myAPI(): MyRequest
{
$config = clone $this->config;
$modelClass = TestModel::class;
$serializer = $this->getBuiltSerializer($config);
if ($this->shouldUseDefaultResponseTransformers() && null !== $serializer) {
$this->applyDefaultResponseTransformers($config, $serializer, $modelClass);
}
return $this->createRequestInstance(TestRequest::class, $config, null);
}
}