paths = $styles; $this->main_style_path = $this->paths[0]; } /** * Retrieves the path to the main style passed into set_styles() * * @return string Main style path */ public function get_main_style_path() { return $this->main_style_path; } /** * Retrieve an iterator over all style paths * * @return ArrayIterator An iterator for the array of style paths */ public function getIterator() { return new ArrayIterator($this->paths); } }