response() public method

Retrieve the response environment
public response ( ) : Zend\Http\PhpEnvironment\Response
return Zend\Http\PhpEnvironment\Response
示例#1
0
文件: AppTest.php 项目: phly/phlyty
 public function testLazyLoadsResponse()
 {
     $app = new App();
     $response = $app->response();
     $this->assertInstanceOf('Zend\\Http\\PhpEnvironment\\Response', $response);
 }