| 1 | <?php |
||
| 20 | class Uri extends \Slick\Http\Uri implements UriInterface |
||
| 21 | { |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Retrieve the path segment of the URI. |
||
| 25 | * |
||
| 26 | * This method always return a string; if no path is present it will return |
||
| 27 | * a '/' string to properly be routed by Aura Router. This differs from |
||
| 28 | * the PSR-7 recommended implementation with this method should return an |
||
| 29 | * empty string if the path is not present. |
||
| 30 | * |
||
| 31 | * @return string The path segment of the URI. |
||
| 32 | */ |
||
| 33 | public function getPath() |
||
| 38 | } |