Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
aerni committed Jun 28, 2023
1 parent 2a4674c commit 8b403aa
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
3 changes: 3 additions & 0 deletions src/CommandGenerator.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,11 @@
class CommandGenerator
{
protected string $operation;

protected array $remote;

protected array $recipe;

protected string $options;

public function operation(string $operation): self
Expand Down
3 changes: 1 addition & 2 deletions src/Commands/SyncCommands.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class SyncCommands extends BaseCommand
*
* @var string
*/
protected $signature = "sync:commands";
protected $signature = 'sync:commands';

/**
* The console command description.
Expand All @@ -20,7 +20,6 @@ class SyncCommands extends BaseCommand

/**
* Execute the console command.
*
*/
public function handle(): void
{
Expand Down
3 changes: 1 addition & 2 deletions src/Commands/SyncList.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class SyncList extends BaseCommand
*
* @var string
*/
protected $signature = "sync:list";
protected $signature = 'sync:list';

/**
* The console command description.
Expand All @@ -20,7 +20,6 @@ class SyncList extends BaseCommand

/**
* Execute the console command.
*
*/
public function handle(): void
{
Expand Down
1 change: 1 addition & 0 deletions src/SyncProcessor.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
class SyncProcessor
{
protected $commands;

protected $artisanCommand;

public function commands(Collection $commands): self
Expand Down

0 comments on commit 8b403aa

Please sign in to comment.