1 | <?php namespace Arcanesoft\Media\Events; |
||
9 | class FileDeleted |
||
10 | { |
||
11 | /* ----------------------------------------------------------------- |
||
12 | | Properties |
||
13 | | ----------------------------------------------------------------- |
||
14 | */ |
||
15 | |||
16 | /** @var string */ |
||
17 | public $path; |
||
18 | |||
19 | /** @var bool */ |
||
20 | public $deleted; |
||
21 | |||
22 | /* ----------------------------------------------------------------- |
||
23 | | Constructor |
||
24 | | ----------------------------------------------------------------- |
||
25 | */ |
||
26 | |||
27 | /** |
||
28 | * FileDeleted constructor. |
||
29 | * |
||
30 | * @param string $path |
||
31 | * @param bool $deleted |
||
32 | */ |
||
33 | 6 | public function __construct($path, $deleted) |
|
38 | } |
||
39 |