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