PATH:
home
/
lab2454c
/
credityork.com
/
wp-content
/
plugins
/
wp-optimize
/
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; } }
[+]
JS
[-] ImportProcessor.php
[edit]
[-] YUICompressor.php
[edit]
[+]
Source
[-] CSSmin.php
[edit]
[-] ServeConfiguration.php
[edit]
[+]
Cache
[-] ScssCssSource.php
[edit]
[-] CSS.php
[edit]
[-] CacheInterface.php
[edit]
[-] HTML.php
[edit]
[-] NailgunClosureCompiler.php
[edit]
[+]
..
[-] Config.php
[edit]
[+]
Controller
[-] LessCssSource.php
[edit]
[+]
Logger
[-] SourceSet.php
[edit]
[-] Build.php
[edit]
[+]
CSS
[-] Packer.php
[edit]
[-] DebugDetector.php
[edit]
[-] App.php
[edit]
[-] Lines.php
[edit]
[-] ControllerInterface.php
[edit]
[-] SourceInterface.php
[edit]
[+]
HTML
[-] CommentPreserver.php
[edit]
[-] ClosureCompiler.php
[edit]
[-] Source.php
[edit]
[-] Env.php
[edit]