| Total Complexity | 3 |
| Total Lines | 39 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class UrlGenerator extends \Illuminate\Routing\UrlGenerator |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * Get the URL for a given route instance. |
||
| 14 | * |
||
| 15 | * @param Route $route |
||
| 16 | * @param mixed $parameters |
||
| 17 | * @param bool $absolute |
||
| 18 | * @return string |
||
| 19 | * |
||
| 20 | * @throws UrlGenerationException |
||
| 21 | */ |
||
| 22 | public function toRoute($route, $parameters, $absolute) |
||
| 33 | } |
||
| 34 | |||
| 35 | /** |
||
| 36 | * Generate an absolute URL to the given path. |
||
| 37 | * |
||
| 38 | * @param string $path |
||
| 39 | * @param mixed $extra |
||
| 40 | * @param bool|null $secure |
||
| 41 | * |
||
| 42 | * @return string |
||
| 43 | */ |
||
| 44 | public function to($path, $extra = [], $secure = null) |
||
| 52 |