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