mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-02-05 15:48:40 +00:00
32 lines
683 B
PHP
32 lines
683 B
PHP
<?php
|
|
|
|
namespace PhpOffice\PhpPresentation\Writer\ODPresentation;
|
|
|
|
use PhpOffice\PhpPresentation\Shape\Chart;
|
|
|
|
abstract class AbstractDecoratorWriter extends \PhpOffice\PhpPresentation\Writer\AbstractDecoratorWriter
|
|
{
|
|
/**
|
|
* @var Chart[]
|
|
*/
|
|
protected $arrayChart;
|
|
|
|
/**
|
|
* @return \PhpOffice\PhpPresentation\Shape\Chart[]
|
|
*/
|
|
public function getArrayChart()
|
|
{
|
|
return $this->arrayChart;
|
|
}
|
|
|
|
/**
|
|
* @param \PhpOffice\PhpPresentation\Shape\Chart[] $arrayChart
|
|
* @return AbstractDecoratorWriter
|
|
*/
|
|
public function setArrayChart($arrayChart)
|
|
{
|
|
$this->arrayChart = $arrayChart;
|
|
return $this;
|
|
}
|
|
}
|