![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/demo.cartinsight.co/vendor/mrclay/minify/lib/Minify/ |
<?php /** * Class Minify_ServeConfiguration * @package Minify */ /** * A configuration for Minify::serve() determined by a controller * * @package Minify */ class Minify_ServeConfiguration { /** * @var Minify_SourceInterface[] */ protected $sources; /** * @var array */ protected $options; /** * @var string */ protected $selectionId = ''; /** * @param array $options * @param Minify_SourceInterface[] $sources * @param string $selectionId */ public function __construct(array $options, array $sources = array(), $selectionId = '') { $this->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; } }