for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PhpOffice\PhpPresentation\Writer;
use PhpOffice\Common\Adapter\Zip\ZipInterface;
use PhpOffice\PhpPresentation\HashTable;
use PhpOffice\PhpPresentation\PhpPresentation;
abstract class AbstractDecoratorWriter
{
/**
* @return ZipInterface
*/
abstract public function render();
* @var \PhpOffice\PhpPresentation\HashTable
protected $oHashTable;
* @var PhpPresentation
protected $oPresentation;
* @var ZipInterface
protected $oZip;
* @param HashTable $hashTable
* @return $this
public function setDrawingHashTable(HashTable $hashTable)
$this->oHashTable = $hashTable;
return $this;
}
* @return HashTable
public function getDrawingHashTable()
return $this->oHashTable;
* @param PhpPresentation $oPresentation
public function setPresentation(PhpPresentation $oPresentation)
$this->oPresentation = $oPresentation;
* @return PhpPresentation
public function getPresentation()
return $this->oPresentation;
* @param ZipInterface $oZip
public function setZip(ZipInterface $oZip)
$this->oZip = $oZip;
public function getZip()
return $this->oZip;