breadcrumbs()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 1
dl 0
loc 5
rs 10
c 0
b 0
f 0
1
<?php
2
3
use Thinktomorrow\Chief\Pages\Page;
4
use Thinktomorrow\ChiefSitestructure\Breadcrumbs\Breadcrumbs;
5
6
if (!function_exists('breadcrumbs')) {
7
    function breadcrumbs(Page $page)
8
    {
9
        $breadcrumbs = app(Breadcrumbs::class)->getForPage($page);
10
11
        return $breadcrumbs;
12
    }
13
}
14