| Total Complexity | 2 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 33 | class BeforeFolderScannedEvent extends Event { |
||
| 34 | |||
| 35 | /** @var string */ |
||
| 36 | private $absolutePath; |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @param string $absolutePath |
||
| 40 | * |
||
| 41 | * @since 18.0.0 |
||
| 42 | */ |
||
| 43 | public function __construct(string $absolutePath) { |
||
| 44 | parent::__construct(); |
||
| 45 | $this->absolutePath = $absolutePath; |
||
| 46 | } |
||
| 47 | |||
| 48 | /** |
||
| 49 | * @return string |
||
| 50 | * @since 18.0.0 |
||
| 51 | */ |
||
| 52 | public function getAbsolutePath(): string { |
||
| 54 | } |
||
| 55 | |||
| 57 |