[FONT_NAME] => [] Map whose keys contain all the fonts used */ protected $usedFontsSet = []; /** * Registers the given style as a used style. * Duplicate styles won't be registered more than once. * * @param Style $style The style to be registered * @return Style The registered style, updated with an internal ID. */ public function registerStyle(Style $style) { $registeredStyle = parent::registerStyle($style); $this->usedFontsSet[$style->getFontName()] = true; return $registeredStyle; } /** * @return string[] List of used fonts name */ public function getUsedFonts() { return \array_keys($this->usedFontsSet); } }