1 | <?php |
||
23 | class Fragment extends AbstractComponent implements FragmentInterface |
||
24 | { |
||
25 | /** |
||
26 | * @inheritdoc |
||
27 | */ |
||
28 | protected static $reservedCharactersRegex = "\!\$&'\(\)\*\+,;\=\:\/@\?"; |
||
29 | |||
30 | /** |
||
31 | * @inheritdoc |
||
32 | */ |
||
33 | 2 | public function __debugInfo() |
|
34 | { |
||
35 | 2 | return ['fragment' => $this->__toString()]; |
|
36 | } |
||
37 | |||
38 | /** |
||
39 | * Returns the instance string representation |
||
40 | * with its optional URI delimiters |
||
41 | * |
||
42 | * @return string |
||
43 | */ |
||
44 | 623 | public function getUriComponent() |
|
53 | } |
||
54 |