File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 7
7
abstract class MenuItem implements MenuItemContract
8
8
{
9
9
protected string $ type = 'normal ' ;
10
+
10
11
protected ?string $ label = null ;
12
+
11
13
protected ?string $ sublabel = null ;
14
+
12
15
protected ?string $ accelerator = null ;
16
+
13
17
protected ?string $ icon = null ;
18
+
14
19
protected ?string $ toolTip = null ;
15
20
16
21
protected bool $ isEnabled = true ;
22
+
17
23
protected bool $ isVisible = true ;
18
- protected bool $ isChecked = false ;
19
24
25
+ protected bool $ isChecked = false ;
20
26
21
27
public function enabled ($ enabled = true ): self
22
28
{
Original file line number Diff line number Diff line change 3
3
namespace Native \Laravel ;
4
4
5
5
use Illuminate \Support \Facades \URL ;
6
- use Illuminate \Support \Str ;
7
6
use Native \Laravel \Client \Client ;
8
7
9
8
class Window
You can’t perform that action at this time.
0 commit comments