| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 19 | public function __construct(string $dir) |
||
| 20 | { |
||
| 21 | $this->cacheFile = $dir . '/cacheChannels.txt'; |
||
| 22 | $this->cacheIdsFile = $dir . '/cacheIds.txt'; |
||
| 23 | |||
| 24 | if (!is_dir($dir)) { |
||
| 25 | mkdir($dir); |
||
| 26 | } |
||
| 27 | |||
| 28 | $this->cache = new SplFileObject($this->cacheFile, 'a+b'); |
||
| 29 | $this->cacheIds = new SplFileObject($this->cacheIdsFile, 'a+b'); |
||
| 30 | } |
||
| 69 |