Skip to content

Commit 13c709a

Browse files
committed
Merge branch 'main' of github.com:NativePHP/laravel
2 parents 64fa87f + 24714b3 commit 13c709a

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

src/Menu/Items/MenuItem.php

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,22 @@
77
abstract class MenuItem implements MenuItemContract
88
{
99
protected string $type = 'normal';
10+
1011
protected ?string $label = null;
12+
1113
protected ?string $sublabel = null;
14+
1215
protected ?string $accelerator = null;
16+
1317
protected ?string $icon = null;
18+
1419
protected ?string $toolTip = null;
1520

1621
protected bool $isEnabled = true;
22+
1723
protected bool $isVisible = true;
18-
protected bool $isChecked = false;
1924

25+
protected bool $isChecked = false;
2026

2127
public function enabled($enabled = true): self
2228
{

src/Window.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
namespace Native\Laravel;
44

55
use Illuminate\Support\Facades\URL;
6-
use Illuminate\Support\Str;
76
use Native\Laravel\Client\Client;
87

98
class Window

0 commit comments

Comments
 (0)