Akeneo\Component\SpreadsheetParser\Xlsx\Spreadsheet::getStyles PHP 메소드

getStyles() 보호된 메소드

protected getStyles ( ) : Styles
리턴 Styles
    protected function getStyles()
    {
        if (!$this->styles) {
            $path = $this->archive->extract($this->relationships->getStylesPath());
            $this->styles = $this->stylesLoader->open($path, $this->archive);
        }
        return $this->styles;
    }