Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
9 | public function __construct() |
||
10 | { |
||
11 | parent::__construct(); |
||
12 | |||
13 | $this->breadcrumbs = new Breadcrumbs(); |
||
|
|||
14 | $this->breadcrumbs->setListElement('nav'); |
||
15 | $this->breadcrumbs->setCssClasses('breadcrumb'); |
||
16 | $this->breadcrumbs->addCrumb('Dashboard', route('admin.page.index')); |
||
17 | } |
||
18 | } |
||
19 |
In PHP it is possible to write to properties without declaring them. For example, the following is perfectly valid PHP code:
Generally, it is a good practice to explictly declare properties to avoid accidental typos and provide IDE auto-completion: