Skip to content

Commit 8b403aa

Browse files
committed
Fix styling
1 parent 2a4674c commit 8b403aa

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

src/CommandGenerator.php

+3
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,11 @@
1010
class CommandGenerator
1111
{
1212
protected string $operation;
13+
1314
protected array $remote;
15+
1416
protected array $recipe;
17+
1518
protected string $options;
1619

1720
public function operation(string $operation): self

src/Commands/SyncCommands.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class SyncCommands extends BaseCommand
99
*
1010
* @var string
1111
*/
12-
protected $signature = "sync:commands";
12+
protected $signature = 'sync:commands';
1313

1414
/**
1515
* The console command description.
@@ -20,7 +20,6 @@ class SyncCommands extends BaseCommand
2020

2121
/**
2222
* Execute the console command.
23-
*
2423
*/
2524
public function handle(): void
2625
{

src/Commands/SyncList.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class SyncList extends BaseCommand
99
*
1010
* @var string
1111
*/
12-
protected $signature = "sync:list";
12+
protected $signature = 'sync:list';
1313

1414
/**
1515
* The console command description.
@@ -20,7 +20,6 @@ class SyncList extends BaseCommand
2020

2121
/**
2222
* Execute the console command.
23-
*
2423
*/
2524
public function handle(): void
2625
{

src/SyncProcessor.php

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
class SyncProcessor
1010
{
1111
protected $commands;
12+
1213
protected $artisanCommand;
1314

1415
public function commands(Collection $commands): self

0 commit comments

Comments
 (0)