Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
15 | * @throws ViewNotSetException |
||
16 | * @throws \DaveJamesMiller\Breadcrumbs\Exceptions\InvalidBreadcrumbException |
||
17 | * @throws \DaveJamesMiller\Breadcrumbs\Exceptions\UnnamedRouteException |
||
18 | */ |
||
19 | public function renderIfExists($name = null) |
||
20 | { |
||
21 | if (is_null($name)) { |
||
22 | $params = $this->getCurrentRoute(); |
||
23 | $name = $params[0]; |
||
24 | } |
||
65 |