From 14d6d33126d017248becc1dadd3fd9a719baa6f3 Mon Sep 17 00:00:00 2001 From: Andrey Helldar Date: Wed, 2 Jun 2021 10:13:04 +0000 Subject: [PATCH] Apply fixes from StyleCI --- config/private.php | 9 ++++++++- src/Console/BaseCommand.php | 4 ++-- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/config/private.php b/config/private.php index 7a1c16da..2b202bf1 100644 --- a/config/private.php +++ b/config/private.php @@ -1,6 +1,13 @@ [ diff --git a/src/Console/BaseCommand.php b/src/Console/BaseCommand.php index ab568a45..f8db7904 100644 --- a/src/Console/BaseCommand.php +++ b/src/Console/BaseCommand.php @@ -37,8 +37,6 @@ abstract class BaseCommand extends Command protected $processed = []; - abstract protected function processor(?string $filename): Processor; - public function handle() { $this->setLogger(); @@ -48,6 +46,8 @@ public function handle() $this->end(); } + abstract protected function processor(?string $filename): Processor; + protected function ran(): void { $this->log('Starting processing of the package list...');