|
3 | 3 | namespace Native\Laravel\Facades; |
4 | 4 |
|
5 | 5 | use Illuminate\Support\Facades\Facade; |
| 6 | +use Native\Laravel\Contracts\MenuItem; |
6 | 7 | use Native\Laravel\Menu\Items\Checkbox; |
7 | 8 | use Native\Laravel\Menu\Items\Label; |
8 | 9 | use Native\Laravel\Menu\Items\Link; |
|
11 | 12 | use Native\Laravel\Menu\Items\Separator; |
12 | 13 |
|
13 | 14 | /** |
14 | | - * @method static \Native\Laravel\Menu\Menu make(\Native\Laravel\Menu\Items\MenuItem ...$items) |
| 15 | + * @method static \Native\Laravel\Menu\Menu make(MenuItem ...$items) |
15 | 16 | * @method static Checkbox checkbox(string $label, bool $checked = false, ?string $hotkey = null) |
16 | 17 | * @method static Label label(string $label) |
17 | 18 | * @method static Link link(string $url, string $label = null, ?string $hotkey = null) |
|
23 | 24 | * @method static Role view() |
24 | 25 | * @method static Role window() |
25 | 26 | * @method static Role help() |
26 | | - * @method static Role window() |
27 | 27 | * @method static Role fullscreen() |
28 | 28 | * @method static Role separator() |
29 | 29 | * @method static Role devTools() |
|
37 | 37 | * @method static Role minimize() |
38 | 38 | * @method static Role close() |
39 | 39 | * @method static Role quit() |
40 | | - * @method static Role help() |
41 | 40 | * @method static Role hide() |
42 | 41 | * @method static void create(MenuItem ...$items) |
43 | 42 | * @method static void default() |
|
0 commit comments