diff --git a/src/Commands/PushDeletedToCyclopsCommand.php b/src/Commands/PushDeletedToCyclopsCommand.php index 6302c36..7679728 100644 --- a/src/Commands/PushDeletedToCyclopsCommand.php +++ b/src/Commands/PushDeletedToCyclopsCommand.php @@ -6,7 +6,7 @@ abstract class PushDeletedToCyclopsCommand extends PushStateToCyclopsCommand { - final function executeUseCase() + protected function executeUseCase() { $pushUseCase = new PushDeletedToCyclopsUseCase($this->getService()); $pushUseCase->execute($this->getList(), $this->onCustomerDeleted()); diff --git a/src/Commands/PushStaleToCyclopsCommand.php b/src/Commands/PushStaleToCyclopsCommand.php index 1007be1..91f73dc 100644 --- a/src/Commands/PushStaleToCyclopsCommand.php +++ b/src/Commands/PushStaleToCyclopsCommand.php @@ -6,7 +6,7 @@ abstract class PushStaleToCyclopsCommand extends PushStateToCyclopsCommand { - final function executeUseCase() + protected function executeUseCase() { $pushUseCase = new PushStaleToCyclopsUseCase($this->getService()); $pushUseCase->execute($this->getList(), $this->getCustomerPushedHandler());