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 | /* ----------------------------------------------------------------- |
||
23 | | Constructor |
||
24 | | ----------------------------------------------------------------- |
||
25 | */ |
||
26 | |||
27 | /** |
||
28 | * FileMoved constructor. |
||
29 | * |
||
30 | * @param string $from |
||
31 | * @param string $to |
||
32 | * @param bool $moved |
||
33 | */ |
||
34 | 8 | public function __construct($from, $to, $moved) |
|
39 | } |
||
40 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.