Skip to content

Commit ff9e9a0

Browse files
cklei-carlygithub-actions[bot]
authored andcommitted
Fix styling
1 parent f4b6eb4 commit ff9e9a0

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/Commands/UpdateCommand.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ class UpdateCommand extends Command
1313
use WithPixelArt;
1414

1515
private bool $forcePublishMigrations = false;
16+
1617
private bool $forceRunMigration = false;
1718

1819
public function handle()
@@ -40,7 +41,7 @@ public function handle()
4041
if ($this->forcePublishMigrations || $this->confirm('Do you want to publish the migrations?', true)) {
4142
$this->call('vendor:publish', [
4243
'--tag' => InspireCms::CORE_SLUG . '-migrations',
43-
'--force' => $this->forceRunMigration,
44+
'--force' => $this->forceRunMigration,
4445
]);
4546
$this->info('Migrations published.');
4647
} else {

src/Models/User.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public function userActivities()
4141
protected static function boot()
4242
{
4343
parent::boot();
44-
44+
4545
static::creating(function ($model) {
4646
if (empty($model->uuid)) {
4747
$model->uuid = (string) Str::uuid7();

0 commit comments

Comments
 (0)