getContent() 공개 메소드

public getContent ( ) : false
리턴 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());
 }