| 1 | <?php |
||
| 14 | abstract class AbstractResponse extends \NilPortugues\Api\Http\Message\AbstractResponse |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var array |
||
| 18 | */ |
||
| 19 | protected $headers = [ |
||
| 20 | 'Content-type' => 'application/hal+json; charset=utf-8', |
||
| 21 | 'Cache-Control' => 'private, max-age=0, must-revalidate', |
||
| 22 | ]; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @param string $body |
||
| 26 | */ |
||
| 27 | public function __construct($body) |
||
| 35 | } |
||
| 36 |