| 1 | <?php |
||
| 15 | class ResolveCache |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var string |
||
| 19 | */ |
||
| 20 | private $path; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @var string[]|null |
||
| 24 | */ |
||
| 25 | private $filters; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var bool |
||
| 29 | */ |
||
| 30 | private $force; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @param string[]|null $filters |
||
| 34 | */ |
||
| 35 | public function __construct(string $path, ?array $filters = null, bool $force = false) |
||
| 41 | |||
| 42 | public function getPath(): string |
||
| 46 | |||
| 47 | /** |
||
| 48 | * @return string[]|null |
||
| 49 | */ |
||
| 50 | public function getFilters(): ?array |
||
| 54 | |||
| 55 | public function isForce(): bool |
||
| 59 | } |
||
| 60 |