Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
42 | public function warmUp($cacheDir) |
||
43 | { |
||
44 | $bundleCacheDir = sprintf('%s/ma27_api_key_authentication', $cacheDir); |
||
45 | |||
46 | $this->filesystem->mkdir($bundleCacheDir); |
||
47 | $this->filesystem->touch($filename = sprintf('%s/metadata_dump', $bundleCacheDir)); |
||
48 | $this->filesystem->dumpFile($filename, $this->buildCacheData()); |
||
49 | } |
||
50 | |||
75 |