File tree 5 files changed +45
-12
lines changed
5 files changed +45
-12
lines changed Original file line number Diff line number Diff line change 2
2
3
3
namespace Native \Laravel ;
4
4
5
- use Illuminate \Support \Traits \Conditionable ;
6
- use Illuminate \Support \Traits \Macroable ;
7
5
use Native \Laravel \Client \Client ;
8
- use Native \Laravel \Facades \Window ;
9
6
10
7
class Alert
11
8
{
12
9
protected ?string $ type ;
10
+
13
11
protected ?string $ title ;
12
+
14
13
protected ?string $ detail ;
14
+
15
15
protected ?array $ buttons ;
16
+
16
17
protected ?int $ defaultId ;
18
+
17
19
protected ?int $ cancelId ;
18
20
19
- final public function __construct (protected Client $ client )
20
- {
21
- }
21
+ final public function __construct (protected Client $ client ) {}
22
22
23
23
public static function new ()
24
24
{
@@ -76,7 +76,7 @@ public function show(string $message): int
76
76
'detail ' => $ this ->detail ,
77
77
'buttons ' => $ this ->buttons ,
78
78
'defaultId ' => $ this ->defaultId ,
79
- 'cancelId ' => $ this ->cancelId
79
+ 'cancelId ' => $ this ->cancelId ,
80
80
]);
81
81
82
82
return (int ) $ response ->json ('result ' );
Original file line number Diff line number Diff line change 8
8
use Illuminate \Support \Collection ;
9
9
use Illuminate \Support \Facades \File ;
10
10
use Illuminate \Support \Facades \Process ;
11
+ use Native \Laravel \Support \Environment ;
11
12
12
13
use function Laravel \Prompts \error ;
13
14
use function Laravel \Prompts \info ;
@@ -53,7 +54,7 @@ private function processEnvironment(): static
53
54
{
54
55
$ locationCommand = 'which ' ;
55
56
56
- if (PHP_OS_FAMILY === ' Windows ' ) {
57
+ if (Environment:: isWindows () ) {
57
58
$ locationCommand = 'where ' ;
58
59
}
59
60
@@ -154,9 +155,9 @@ private function outputToClipboard(): void
154
155
$ json = json_encode ($ this ->debugInfo ->toArray (), JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES );
155
156
156
157
// Copy json to clipboard
157
- if (PHP_OS_FAMILY === ' Windows ' ) {
158
+ if (Environment:: isWindows () ) {
158
159
Process::run ('echo ' .escapeshellarg ($ json ).' | clip ' );
159
- } elseif (PHP_OS_FAMILY === ' Linux ' ) {
160
+ } elseif (Environment:: isLinux () ) {
160
161
Process::run ('echo ' .escapeshellarg ($ json ).' | xclip -selection clipboard ' );
161
162
} else {
162
163
Process::run ('echo ' .escapeshellarg ($ json ).' | pbcopy ' );
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ public function register(): void
14
14
Event::listen ('* ' , function (string $ eventName , array $ data ) {
15
15
$ event = $ data [0 ] ?? (object ) null ;
16
16
17
- if (! is_object ($ event )) {
17
+ if (! is_object ($ event )) {
18
18
return ;
19
19
}
20
20
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ namespace Native \Laravel \Support ;
4
+
5
+ class Environment
6
+ {
7
+ public static function isWindows (): bool
8
+ {
9
+ return PHP_OS_FAMILY === 'Windows ' ;
10
+ }
11
+
12
+ public static function isLinux (): bool
13
+ {
14
+ return PHP_OS_FAMILY === 'Linux ' ;
15
+ }
16
+
17
+ public static function isMac (): bool
18
+ {
19
+ return PHP_OS_FAMILY === 'Darwin ' ;
20
+ }
21
+
22
+ public static function isUnknown (): bool
23
+ {
24
+ return PHP_OS_FAMILY === 'Unknown ' ;
25
+ }
26
+
27
+ public static function isUnixLike (): bool
28
+ {
29
+ return static ::isLinux () || static ::isMac ();
30
+ }
31
+ }
Original file line number Diff line number Diff line change 4
4
5
5
use Native \Laravel \Client \Client ;
6
6
use Native \Laravel \DataObjects \Printer ;
7
+ use Native \Laravel \Support \Environment ;
7
8
use Native \Laravel \Support \Timezones ;
8
9
9
10
class System
@@ -79,7 +80,7 @@ public function timezone(): string
79
80
{
80
81
$ timezones = new Timezones ;
81
82
82
- if (PHP_OS_FAMILY === ' Windows ' ) {
83
+ if (Environment:: isWindows () ) {
83
84
$ timezone = $ timezones ->translateFromWindowsString (exec ('tzutil /g ' ));
84
85
} else {
85
86
$ timezone = $ timezones ->translateFromAbbreviatedString (exec ('date +%Z ' ));
You can’t perform that action at this time.
0 commit comments