We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Total Complexity | 2 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
9 | class FiltersNavbar extends Component |
||
10 | { |
||
11 | public $crud; |
||
12 | |||
13 | /** |
||
14 | * Create a new component instance. |
||
15 | */ |
||
16 | public function __construct($crud) |
||
17 | { |
||
18 | $this->crud = $crud; |
||
19 | } |
||
20 | |||
21 | /** |
||
22 | * Get the view / contents that represent the component. |
||
23 | */ |
||
24 | public function render(): View|Closure|string |
||
27 | } |
||
28 | } |
||
29 |