Skip to content

Commit a5c42c7

Browse files
Fixed code-style
1 parent cb0405c commit a5c42c7

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

src/Processors/Processor.php

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,17 @@ abstract class Processor
2626
abstract public function handle(): void;
2727

2828
public function __construct(
29-
protected Options $options,
30-
protected InputInterface $input,
31-
protected OutputStyle $output,
32-
protected Config $config,
29+
protected Options $options,
30+
protected InputInterface $input,
31+
protected OutputStyle $output,
32+
protected Config $config,
3333
protected ActionRepository $repository,
34-
protected Git $git,
35-
protected File $file,
36-
protected Migrator $migrator,
37-
protected Notification $notification,
38-
protected Dispatcher $events,
39-
protected Sorter $sorter
34+
protected Git $git,
35+
protected File $file,
36+
protected Migrator $migrator,
37+
protected Notification $notification,
38+
protected Dispatcher $events,
39+
protected Sorter $sorter
4040
) {
4141
$this->notification->setOutput($this->output);
4242
$this->repository->setConnection($this->options->connection);

src/Processors/Upgrade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,9 +145,9 @@ protected function callMigration(): void
145145
: __DIR__ . '/../../database/migrations/named/2022_08_18_180137_change_migration_actions_table.php';
146146

147147
$this->artisan('migrate', [
148-
'--path' => $path,
148+
'--path' => $path,
149149
'--realpath' => true,
150-
'--force' => true,
150+
'--force' => true,
151151
]);
152152
});
153153
}

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

0 commit comments

Comments
 (0)