Skip to content

Commit 365c839

Browse files
committed
Fix style
1 parent b620be1 commit 365c839

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

app/src/Database/Models/Member.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ class Member extends User
6262
'password',
6363
'deleted_at',
6464
'city',
65-
'country'
65+
'country',
6666
];
6767

6868
protected string $auxType = MemberAux::class;
@@ -77,7 +77,7 @@ protected static function boot()
7777
}
7878

7979
/**
80-
* Custom mutator for Member property
80+
* Custom mutator for Member property.
8181
*/
8282
public function setCityAttribute(string $value): void
8383
{
@@ -86,7 +86,7 @@ public function setCityAttribute(string $value): void
8686
}
8787

8888
/**
89-
* Custom mutator for Member property
89+
* Custom mutator for Member property.
9090
*/
9191
public function setCountryAttribute(string $value): void
9292
{
@@ -103,7 +103,7 @@ public function aux(): HasOne
103103
}
104104

105105
/**
106-
* If this instance doesn't already have a related aux model (either in the db on in the current object), then create one
106+
* If this instance doesn't already have a related aux model (either in the db on in the current object), then create one.
107107
*/
108108
protected function createAuxIfNotExists(): void
109109
{

app/src/Database/Models/MemberAux.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ class MemberAux extends Model
2727

2828
protected $fillable = [
2929
'city',
30-
'country'
30+
'country',
3131
];
3232
}

app/src/Services.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public function register(): array
2222
{
2323
return [
2424
UserInterface::class => \DI\autowire(Member::class),
25-
UserPageAction::class => \DI\autowire(MemberPageAction::class)
25+
UserPageAction::class => \DI\autowire(MemberPageAction::class),
2626
];
2727
}
2828
}

0 commit comments

Comments
 (0)