Skip to content

Commit 23c3363

Browse files
committed
Style
1 parent 37f0040 commit 23c3363

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

src/Menu/Items/Checkbox.php

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,11 @@ class Checkbox extends MenuItem
66
{
77
protected string $type = 'checkbox';
88

9-
public function __construct(string $label, protected bool $isChecked = false, protected ?string $accelerator = null)
10-
{
9+
public function __construct(
10+
string $label,
11+
protected bool $isChecked = false,
12+
protected ?string $accelerator = null
13+
) {
1114
$this->label = $label;
1215
}
1316
}

src/Menu/Items/Radio.php

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,11 @@ class Radio extends MenuItem
66
{
77
protected string $type = 'radio';
88

9-
public function __construct(string $label, protected bool $isChecked = false, protected ?string $accelerator = null)
10-
{
9+
public function __construct(
10+
string $label,
11+
protected bool $isChecked = false,
12+
protected ?string $accelerator = null
13+
) {
1114
$this->label = $label;
1215
}
1316
}

0 commit comments

Comments
 (0)