for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ComicVine\Api\Response\Type;
/**
* Select json format for response.
*
* Class JsonFormat
* @package grzgajda/comicvine-api
* @author Grzegorz Gajda <[email protected]>
*/
class JsonFormat implements ResponseFormat
{
* Attachment to url request.
* @var array
protected $format = ['format' => 'json'];
* Return JSON format.
* @return array
public function get()
return $this->format;
}