getContent() public method

public getContent ( ) : false
return false
コード例 #1
0
 public function testGetContent()
 {
     $response = new BinaryFileResponse(__FILE__);
     $this->assertFalse($response->getContent());
 }
コード例 #2
0
 public function testGetContent()
 {
     $response = new BinaryFileResponse('README.md');
     $this->assertFalse($response->getContent());
 }