File tree Expand file tree Collapse file tree 11 files changed +63
-0
lines changed Expand file tree Collapse file tree 11 files changed +63
-0
lines changed Original file line number Diff line number Diff line change 4
4
5
5
use Illuminate \Support \Facades \Facade ;
6
6
7
+ /**
8
+ * @method static void focus()
9
+ * @method static void hide()
10
+ * @method static bool isHidden()
11
+ * @method static string version()
12
+ * @method static int badgeCount($count = null)
13
+ * @method static void addRecentDocument(string $path)
14
+ * @method static array recentDocuments()
15
+ * @method static void clearRecentDocuments()
16
+ */
7
17
class App extends Facade
8
18
{
9
19
protected static function getFacadeAccessor ()
Original file line number Diff line number Diff line change 4
4
5
5
use Illuminate \Support \Facades \Facade ;
6
6
7
+ /**
8
+ * @method static void clear()
9
+ * @method static string text($text = null)
10
+ * @method static string html($html = null)
11
+ * @method static string image($image = null)
12
+ */
7
13
class Clipboard extends Facade
8
14
{
9
15
protected static function getFacadeAccessor ()
Original file line number Diff line number Diff line change 3
3
namespace Native \Laravel \Facades ;
4
4
5
5
use Illuminate \Support \Facades \Facade ;
6
+ use Native \Laravel \Menu \Menu ;
6
7
8
+ /**
9
+ * @method static void register(Menu $menu)
10
+ * @method static void remove()
11
+ */
7
12
class ContextMenu extends Facade
8
13
{
9
14
protected static function getFacadeAccessor ()
Original file line number Diff line number Diff line change 3
3
namespace Native \Laravel \Facades ;
4
4
5
5
use Illuminate \Support \Facades \Facade ;
6
+ use Native \Laravel \Menu \Menu ;
6
7
8
+ /**
9
+ * @method static void menu(Menu $menu)
10
+ */
7
11
class Dock extends Facade
8
12
{
9
13
protected static function getFacadeAccessor ()
Original file line number Diff line number Diff line change 4
4
5
5
use Illuminate \Support \Facades \Facade ;
6
6
7
+ /**
8
+ * @method static \Native\Laravel\GlobalShortcut key(string $key)
9
+ * @method static \Native\Laravel\GlobalShortcut event(string $event)
10
+ * @method static void register()
11
+ * @method static void unregister()
12
+ */
7
13
class GlobalShortcut extends Facade
8
14
{
9
15
protected static function getFacadeAccessor ()
Original file line number Diff line number Diff line change 4
4
5
5
use Illuminate \Support \Facades \Facade ;
6
6
7
+ /**
8
+ * @method static \Native\Laravel\MenuBar\PendingCreateMenuBar create()
9
+ * @method static void show()
10
+ * @method static void hide()
11
+ * @method static void label(string $label)
12
+ */
7
13
class MenuBar extends Facade
8
14
{
9
15
protected static function getFacadeAccessor ()
Original file line number Diff line number Diff line change 4
4
5
5
use Illuminate \Support \Facades \Facade ;
6
6
7
+ /**
8
+ * @method static string arch()
9
+ * @method static string platform()
10
+ * @method static float uptime()
11
+ * @method static object fresh()
12
+ */
7
13
class Process extends Facade
8
14
{
9
15
protected static function getFacadeAccessor ()
Original file line number Diff line number Diff line change 4
4
5
5
use Illuminate \Support \Facades \Facade ;
6
6
7
+ /**
8
+ * @method static object cursorPosition()
9
+ * @method static array displays()
10
+ */
7
11
class Screen extends Facade
8
12
{
9
13
protected static function getFacadeAccessor ()
Original file line number Diff line number Diff line change 4
4
5
5
use Illuminate \Support \Facades \Facade ;
6
6
7
+ /**
8
+ * @method static void set($key, $value)
9
+ * @method static void mixed($key, $default = null)
10
+ */
7
11
class Settings extends Facade
8
12
{
9
13
protected static function getFacadeAccessor ()
Original file line number Diff line number Diff line change 4
4
5
5
use Illuminate \Support \Facades \Facade ;
6
6
7
+ /**
8
+ * @method static bool canPromptTouchID()
9
+ * @method static bool promptTouchID(string $reason)
10
+ */
7
11
class System extends Facade
8
12
{
9
13
protected static function getFacadeAccessor ()
You can’t perform that action at this time.
0 commit comments