1 | <?php |
||
24 | class Port extends AbstractComponent implements PortInterface |
||
25 | { |
||
26 | /** |
||
27 | * @inheritdoc |
||
28 | */ |
||
29 | 778 | protected function validate($data) |
|
37 | |||
38 | /** |
||
39 | * DEPRECATION WARNING! This method will be removed in the next major point release |
||
40 | * |
||
41 | * @deprecated deprecated since version 4.2 |
||
42 | * |
||
43 | * Return an integer representation of the Port component |
||
44 | * |
||
45 | * @return int|null |
||
46 | */ |
||
47 | public function toInt() |
||
51 | |||
52 | /** |
||
53 | * Returns the instance string representation |
||
54 | * with its optional URI delimiters |
||
55 | * |
||
56 | * @return string |
||
57 | */ |
||
58 | 155 | public function getUriComponent() |
|
67 | } |
||
68 |