| 1 | <?php |
||
| 5 | class Files |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * Get files to minify and concatenate |
||
| 9 | * |
||
| 10 | * @return array |
||
| 11 | */ |
||
| 12 | public function getFiles($strFilesFolder) |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Save Cache Bust |
||
| 25 | * |
||
| 26 | * @var string $strApplicationFileContents |
||
| 27 | * @var string $strCacheBustFile |
||
| 28 | * @return null |
||
| 29 | */ |
||
| 30 | public function saveCacheBust($strApplicationFileContents = '', $strCacheBustFile = '') |
||
| 49 | |||
| 50 | |||
| 51 | /** |
||
| 52 | * Get Cache Bust |
||
| 53 | * |
||
| 54 | * @var string $strCacheBustFile |
||
| 55 | * @return bool|string |
||
| 56 | */ |
||
| 57 | public function getCacheBust($strCacheBustFile = '') |
||
| 67 | } |
||
| 68 |