for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace AppBundle\Response;
/**
* Nullobject for API response. Returns only HTTP code with empty body
* @author Vehsamrak
*/
class EmptyApiResponse extends ApiResponse
{
* @param int $httpCode
public function __construct(int $httpCode)
parent::__construct('', $httpCode);
}