| Total Complexity | 3 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 27 | class TwigCacheRuntimeLoader implements RuntimeLoaderInterface |
||
| 28 | { |
||
| 29 | /** |
||
| 30 | * Directory where cache files are stored. |
||
| 31 | * @var string |
||
| 32 | */ |
||
| 33 | protected string $cacheDir; |
||
| 34 | |||
| 35 | public function __construct(string $cacheDir) |
||
| 36 | { |
||
| 37 | $this->cacheDir = $cacheDir; |
||
| 38 | } |
||
| 39 | |||
| 40 | public function load(string $class) |
||
| 47 | } |
||
| 48 | } |
||
| 49 |