for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace AppBundle\Response;
use AppBundle\Response\Infrastructure\AbstractApiResponse;
/**
* @author Vehsamrak
*/
class ApiResponse extends AbstractApiResponse
{
protected $data;
public function __construct($data, int $httpCode)
$this->data = $data;
$this->httpCode = $httpCode;
}