response() public method

Retrieve the response environment
public response ( ) : Zend\Http\PhpEnvironment\Response
return Zend\Http\PhpEnvironment\Response
Beispiel #1
0
 public function testLazyLoadsResponse()
 {
     $app = new App();
     $response = $app->response();
     $this->assertInstanceOf('Zend\\Http\\PhpEnvironment\\Response', $response);
 }