Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Apply fixes from StyleCI #124

Merged
merged 1 commit into from
Jun 2, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion config/private.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
<?php

use Helldar\LaravelLangPublisher\Plugins\{Cashier, Fortify, Framework, Jetstream, Lumen, Nova, SparkPaddle, SparkStripe};
use Helldar\LaravelLangPublisher\Plugins\Cashier;
use Helldar\LaravelLangPublisher\Plugins\Fortify;
use Helldar\LaravelLangPublisher\Plugins\Framework;
use Helldar\LaravelLangPublisher\Plugins\Jetstream;
use Helldar\LaravelLangPublisher\Plugins\Lumen;
use Helldar\LaravelLangPublisher\Plugins\Nova;
use Helldar\LaravelLangPublisher\Plugins\SparkPaddle;
use Helldar\LaravelLangPublisher\Plugins\SparkStripe;

return [
'packages' => [
Expand Down
4 changes: 2 additions & 2 deletions src/Console/BaseCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,6 @@ abstract class BaseCommand extends Command

protected $processed = [];

abstract protected function processor(?string $filename): Processor;

public function handle()
{
$this->setLogger();
Expand All @@ -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...');
Expand Down