Inheritance: extends Phprest\HttpFoundation\Response
Example #1
0
 public function testInstantiation()
 {
     $response = new NoContent(['Content-Type' => 'application/json']);
     $this->assertEquals(204, $response->getStatusCode());
     $this->assertEquals('application/json', $response->headers->get('content-type'));
 }