| 1 | <?php |
||
| 23 | class Fragment extends AbstractComponent implements FragmentInterface |
||
| 24 | { |
||
| 25 | /** |
||
| 26 | * Returns the component literal value |
||
| 27 | * |
||
| 28 | * @return string|null |
||
| 29 | */ |
||
| 30 | 760 | public function getContent() |
|
| 41 | |||
| 42 | /** |
||
| 43 | * Return the decoded string representation of the component |
||
| 44 | * |
||
| 45 | * @return string |
||
| 46 | */ |
||
| 47 | 30 | public function getValue() |
|
| 51 | |||
| 52 | /** |
||
| 53 | * Returns the instance string representation |
||
| 54 | * with its optional URI delimiters |
||
| 55 | * |
||
| 56 | * @return string |
||
| 57 | */ |
||
| 58 | 725 | public function getUriComponent() |
|
| 67 | } |
||
| 68 |