getContents() public method

public getContents ( ) : string
return string
Example #1
0
 /**
  * @expectedException \Exception
  * @expectedExceptionMessage fileNotExist.pptx does not exist
  */
 public function testContentsException()
 {
     $oDrawing = new ZipFile();
     $oDrawing->setPath($this->fileKoZip);
     $oDrawing->getContents();
 }