for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Author: Nil Portugués Calderó <[email protected]>
* Date: 7/29/15
* Time: 12:44 AM.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace NilPortugues\Api\Json\Http\Message;
use NilPortugues\Api\Http\Message\AbstractResponse;
class ResourceDeletedResponse extends AbstractResponse
{
* @var int
protected $httpCode = 204;
public function __construct()
$this->response = self::instance('', $this->httpCode, $this->headers);
}
public function getBody()
return;