Skip to content

Commit b9c3028

Browse files
Fix code-style
1 parent a570f2d commit b9c3028

File tree

3 files changed

+17
-17
lines changed

3 files changed

+17
-17
lines changed

src/Processors/Processor.php

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -24,26 +24,26 @@ abstract class Processor
2424
{
2525
use Artisan;
2626

27+
abstract public function handle(): void;
28+
2729
public function __construct(
28-
protected Options $options,
29-
protected InputInterface $input,
30-
protected OutputStyle $output,
31-
protected Config $config,
30+
protected Options $options,
31+
protected InputInterface $input,
32+
protected OutputStyle $output,
33+
protected Config $config,
3234
protected ActionRepository $repository,
33-
protected Git $git,
34-
protected File $file,
35-
protected Migrator $migrator,
36-
protected Notification $notification,
37-
protected Dispatcher $events,
38-
protected Sorter $sorter
35+
protected Git $git,
36+
protected File $file,
37+
protected Migrator $migrator,
38+
protected Notification $notification,
39+
protected Dispatcher $events,
40+
protected Sorter $sorter
3941
) {
4042
$this->notification->setOutput($this->output, $this->options->silent);
4143
$this->repository->setConnection($this->options->connection);
4244
$this->migrator->setConnection($this->options->connection)->setOutput($this->output);
4345
}
4446

45-
abstract public function handle(): void;
46-
4747
protected function getFiles(string $path, ?Closure $filter = null): array
4848
{
4949
$file = Str::finish($path, '.php');

src/Services/Migrator.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@
2020
class Migrator
2121
{
2222
public function __construct(
23-
protected File $file,
24-
protected Notification $notification,
23+
protected File $file,
24+
protected Notification $notification,
2525
protected ActionRepository $repository,
26-
protected Config $config,
27-
protected Application $laravel
26+
protected Config $config,
27+
protected Application $laravel
2828
) {
2929
}
3030

src/Values/Options.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class Options extends DataTransferObject
2525
public bool $realpath = false;
2626

2727
public ?int $step = null;
28-
28+
2929
public bool $silent = false;
3030

3131
public function resolvePath(): self

0 commit comments

Comments
 (0)