1 | <?php |
||
20 | class FilePath extends AbstractFilePath implements FilePathInterface |
||
21 | { |
||
22 | /** |
||
23 | * @param string|\SplFileInfo|null $file |
||
24 | * @param ContentTypeAttribute|null $contentType |
||
25 | * @param ExtensionAttribute|null $extension |
||
26 | */ |
||
27 | public function __construct($file = null, ContentTypeAttribute $contentType = null, ExtensionAttribute $extension = null) |
||
35 | |||
36 | /** |
||
37 | * @param string|null $file |
||
38 | * @param string|null $contentType |
||
39 | * @param string|null $extension |
||
40 | * |
||
41 | * @return self |
||
42 | */ |
||
43 | public static function create(string $file = null, string $contentType = null, string $extension = null) |
||
47 | } |
||
48 |