1 | <?php namespace Arcanesoft\Media\Events; |
||
11 | class FileStoring |
||
12 | { |
||
13 | /* ----------------------------------------------------------------- |
||
14 | | Properties |
||
15 | | ----------------------------------------------------------------- |
||
16 | */ |
||
17 | |||
18 | /** @var \Illuminate\Http\UploadedFile */ |
||
19 | public $file; |
||
20 | |||
21 | /** @var string */ |
||
22 | public $destination; |
||
23 | |||
24 | /** @var array */ |
||
25 | protected $options; |
||
26 | |||
27 | /* ----------------------------------------------------------------- |
||
28 | | Constructor |
||
29 | | ----------------------------------------------------------------- |
||
30 | */ |
||
31 | |||
32 | /** |
||
33 | * UploadedFileStoring constructor. |
||
34 | * |
||
35 | * @param string $destination |
||
36 | * @param \Illuminate\Http\UploadedFile $file |
||
37 | * @param array $options |
||
38 | */ |
||
39 | 8 | public function __construct($destination, UploadedFile $file, $options) |
|
44 | } |
||
45 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.