Total Complexity | 2 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class Modal extends Component |
||
12 | { |
||
13 | public function __construct( |
||
14 | public ?string $id = '', |
||
15 | public ?string $title = null, |
||
16 | public ?string $subtitle = null, |
||
17 | public ?string $boxClass = null, |
||
18 | public ?bool $separator = false, |
||
19 | public ?bool $persistent = false, |
||
20 | public ?bool $withoutTrapFocus = false, |
||
21 | |||
22 | // Slots |
||
23 | public ?string $actions = null |
||
24 | ) { |
||
25 | // |
||
26 | } |
||
27 | |||
28 | /** |
||
29 | * Get the view / contents that represent the component. |
||
30 | */ |
||
31 | public function render(): View|Closure|string |
||
34 | } |
||
35 | } |
||
36 |