diff --git a/src/CommandGenerator.php b/src/CommandGenerator.php index 2160db5..d7bb4e5 100644 --- a/src/CommandGenerator.php +++ b/src/CommandGenerator.php @@ -10,8 +10,11 @@ class CommandGenerator { protected string $operation; + protected array $remote; + protected array $recipe; + protected string $options; public function operation(string $operation): self diff --git a/src/Commands/SyncCommands.php b/src/Commands/SyncCommands.php index b8177da..51e9f50 100644 --- a/src/Commands/SyncCommands.php +++ b/src/Commands/SyncCommands.php @@ -9,7 +9,7 @@ class SyncCommands extends BaseCommand * * @var string */ - protected $signature = "sync:commands"; + protected $signature = 'sync:commands'; /** * The console command description. @@ -20,7 +20,6 @@ class SyncCommands extends BaseCommand /** * Execute the console command. - * */ public function handle(): void { diff --git a/src/Commands/SyncList.php b/src/Commands/SyncList.php index a54c20f..6c25af9 100644 --- a/src/Commands/SyncList.php +++ b/src/Commands/SyncList.php @@ -9,7 +9,7 @@ class SyncList extends BaseCommand * * @var string */ - protected $signature = "sync:list"; + protected $signature = 'sync:list'; /** * The console command description. @@ -20,7 +20,6 @@ class SyncList extends BaseCommand /** * Execute the console command. - * */ public function handle(): void { diff --git a/src/SyncProcessor.php b/src/SyncProcessor.php index e993c01..1f3cbd3 100644 --- a/src/SyncProcessor.php +++ b/src/SyncProcessor.php @@ -9,6 +9,7 @@ class SyncProcessor { protected $commands; + protected $artisanCommand; public function commands(Collection $commands): self