1 | <?php namespace Arcanesoft\Media\Events; |
||
9 | class FileMoved |
||
10 | { |
||
11 | /* ----------------------------------------------------------------- |
||
12 | | Properties |
||
13 | | ----------------------------------------------------------------- |
||
14 | */ |
||
15 | |||
16 | /** @var string */ |
||
17 | public $from; |
||
18 | |||
19 | /** @var string */ |
||
20 | public $to; |
||
21 | |||
22 | /** @var bool */ |
||
23 | public $moved; |
||
24 | |||
25 | /* ----------------------------------------------------------------- |
||
26 | | Constructor |
||
27 | | ----------------------------------------------------------------- |
||
28 | */ |
||
29 | |||
30 | /** |
||
31 | * FileMoved constructor. |
||
32 | * |
||
33 | * @param string $from |
||
34 | * @param string $to |
||
35 | * @param bool $moved |
||
36 | */ |
||
37 | 8 | public function __construct($from, $to, $moved) |
|
43 | } |
||
44 |