mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-01-29 04:28:40 +00:00
37 lines
577 B
PHP
Executable File
37 lines
577 B
PHP
Executable File
<?php
|
|
|
|
namespace PhpOffice\PhpPresentation\Shape\Chart;
|
|
|
|
use PhpOffice\PhpPresentation\Style\Outline;
|
|
|
|
class Gridlines
|
|
{
|
|
/**
|
|
* @var Outline
|
|
*/
|
|
protected $outline;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->outline = new Outline();
|
|
}
|
|
|
|
/**
|
|
* @return Outline
|
|
*/
|
|
public function getOutline()
|
|
{
|
|
return $this->outline;
|
|
}
|
|
|
|
/**
|
|
* @param Outline $outline
|
|
* @return Gridlines
|
|
*/
|
|
public function setOutline(Outline $outline)
|
|
{
|
|
$this->outline = $outline;
|
|
return $this;
|
|
}
|
|
}
|