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