Total Complexity | 1 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
24 | class GetFileMethod implements MethodInterface |
||
25 | { |
||
26 | /** |
||
27 | * File identifier to get info about. |
||
28 | * |
||
29 | * @var string |
||
30 | */ |
||
31 | public $fileId; |
||
32 | |||
33 | /** |
||
34 | * @param string $fileId |
||
35 | * |
||
36 | * @return GetFileMethod |
||
37 | */ |
||
38 | 2 | public static function create(string $fileId): GetFileMethod |
|
46 |