We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84bad16 commit 4af05cbCopy full SHA for 4af05cb
src/DataObjects/Printer.php
@@ -11,8 +11,7 @@ public function __construct(
11
public int $status,
12
public bool $isDefault,
13
public array $options
14
- )
15
- {
+ ) {
16
17
}
18
src/System.php
@@ -29,6 +29,7 @@ public function promptTouchID(string $reason): bool
29
public function printers(): array
30
{
31
$printers = $this->client->get('system/printers')->json('printers');
32
+
33
return collect($printers)->map(function ($printer) {
34
return new Printer(
35
data_get($printer, 'name'),
0 commit comments