options = $options; $this->sources = $sources; $this->selectionId = $selectionId; } /** * @return array */ public function getOptions() { return $this->options; } /** * @return Minify_SourceInterface[] */ public function getSources() { return $this->sources; } /** * Short name to place inside cache id * * The setupSources() method may choose to set this, making it easier to * recognize a particular set of sources/settings in the cache folder. It * will be filtered and truncated to make the final cache id <= 250 bytes. * * @return string */ public function getSelectionId() { return $this->selectionId; } }