1 | <?php |
||
24 | class Ftp extends AbstractHierarchicalUri implements Uri |
||
25 | { |
||
26 | /** |
||
27 | * @inheritdoc |
||
28 | */ |
||
29 | protected static $supportedSchemes = [ |
||
30 | 'ftp' => 21, |
||
31 | ]; |
||
32 | |||
33 | /** |
||
34 | * @inheritdoc |
||
35 | */ |
||
36 | 30 | protected function assertSupportedScheme() |
|
43 | |||
44 | /** |
||
45 | * @inheritdoc |
||
46 | */ |
||
47 | 33 | protected function isValid() |
|
54 | } |
||
55 |