File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 {
Original file line number Diff line number Diff line change @@ -27,6 +27,6 @@ class MemberAux extends Model
2727
2828 protected $ fillable = [
2929 'city ' ,
30- 'country '
30+ 'country ' ,
3131 ];
3232}
Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments