| Total Complexity | 3 |
| Total Lines | 34 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 34 | class FileCacheUpdated extends Event { |
||
| 35 | |||
| 36 | /** @var IStorage */ |
||
| 37 | private $storage; |
||
| 38 | |||
| 39 | /** @var string */ |
||
| 40 | private $path; |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @param IStorage $storage |
||
| 44 | * @param string $path |
||
| 45 | * @since 18.0.0 |
||
| 46 | */ |
||
| 47 | public function __construct(IStorage $storage, |
||
| 52 | } |
||
| 53 | |||
| 54 | /** |
||
| 55 | * @return IStorage |
||
| 56 | * @since 18.0.0 |
||
| 57 | */ |
||
| 58 | public function getStorage(): IStorage { |
||
| 59 | return $this->storage; |
||
| 60 | } |
||
| 61 | |||
| 62 | /** |
||
| 63 | * @return string |
||
| 64 | * @since 18.0.0 |
||
| 65 | */ |
||
| 66 | public function getPath(): string { |
||
| 68 | } |
||
| 69 | |||
| 71 |