Skip to content

Commit

Permalink
fix: lint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
beesaferoot committed Nov 25, 2024
1 parent d55acff commit 3fd599c
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/backend/app/Console/Commands/AbstractSharedCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,8 @@ abstract class AbstractSharedCommand extends Command

protected int $EXECUTION_TYPE = self::EXECUTE_FOR_ALL;


/**
* Configure the command
* Configure the command.
*/
protected function configure(): void
{
Expand All @@ -32,7 +31,6 @@ protected function configure(): void
);
}


protected function execute(InputInterface $input, OutputInterface $output)
{
/** @var DatabaseProxyManagerService $databaseProxyManagerService */
Expand Down Expand Up @@ -79,7 +77,7 @@ private function runForCompany(
InputInterface $input,
OutputInterface $output,
): void {
$this->info('Running ' . $this->name . ' for company ID : ' . $companyId);
$this->info('Running '.$this->name.' for company ID : '.$companyId);
$databaseProxyManagerService->runForCompany($companyId, function () use ($input, $output) {
parent::execute($input, $output);
});
Expand Down

0 comments on commit 3fd599c

Please sign in to comment.