![]() 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 /** * Interface Minify_SourceInterface * @package Minify */ /** * A content source to be minified by Minify. * * This allows per-source minification options and the mixing of files with * content from other sources. * * @package Minify */ interface Minify_SourceInterface { /** * Get the minifier * * @return callable|null */ public function getMinifier(); /** * Set the minifier * * @param callable $minifier * @return void */ public function setMinifier($minifier = null); /** * Get options for the minifier * * @return array */ public function getMinifierOptions(); /** * Set options for the minifier * * @param array $options * @return void */ public function setMinifierOptions(array $options); /** * Get the content type * * @return string|null */ public function getContentType(); /** * Get content * * @return string */ public function getContent(); /** * Get last modified timestamp * * @return int */ public function getLastModified(); /** * Get id * * @return string */ public function getId(); /** * Get the path of the file that this source is based on (may be null) * * @return string|null */ public function getFilePath(); }