1 | <?php |
||
23 | class Fragment extends AbstractComponent implements FragmentInterface |
||
24 | { |
||
25 | /** |
||
26 | * Returns the component literal value |
||
27 | * |
||
28 | * @return string|null |
||
29 | */ |
||
30 | 829 | public function getContent() |
|
41 | |||
42 | /** |
||
43 | * Return the decoded string representation of the component |
||
44 | * |
||
45 | * @return null|string |
||
46 | */ |
||
47 | 30 | public function getDecoded() |
|
55 | |||
56 | /** |
||
57 | * Returns the instance string representation |
||
58 | 806 | * with its optional URI delimiters |
|
59 | * |
||
60 | 806 | * @return string |
|
61 | 806 | */ |
|
62 | 392 | public function getUriComponent() |
|
71 | 2 | ||
72 | /** |
||
73 | 2 | * @inheritdoc |
|
74 | */ |
||
75 | public function __debugInfo() |
||
79 | } |
||
80 |