Skip to content

Commit de206c8

Browse files
committed
Fix code style
1 parent 541be70 commit de206c8

File tree

6 files changed

+6
-1
lines changed

6 files changed

+6
-1
lines changed

src/Entity/ForgotPasswordCode.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
/**
88
* @ORM\Entity()
9+
*
910
* @ORM\Table(name="forgot_password_code")
1011
*/
1112
class ForgotPasswordCode extends \Parthenon\User\Entity\ForgotPasswordCode

src/Entity/InviteCode.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
/**
88
* @ORM\Entity()
9+
*
910
* @ORM\Table(name="invite_codes")
1011
*/
1112
class InviteCode extends \Parthenon\User\Entity\InviteCode

src/Entity/Team.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
/**
1212
* @ORM\Entity()
13+
*
1314
* @ORM\Table(name="teams")
1415
*/
1516
class Team extends \Parthenon\User\Entity\Team implements SubscriberInterface

src/Entity/TeamInviteCode.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
/**
88
* @ORM\Entity()
9+
*
910
* @ORM\Table(name="team_invite_codes")
1011
*/
1112
class TeamInviteCode extends \Parthenon\User\Entity\TeamInviteCode

src/Entity/User.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
/**
1212
* @ORM\Entity()
13+
*
1314
* @ORM\Table(name="users")
1415
*/
1516
class User extends \Parthenon\User\Entity\User implements MemberInterface, LimitedUserInterface

src/User/Entity/EntityFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public function buildPasswordReset(UserInterface $user): ForgotPasswordCode
2020
return \App\Entity\ForgotPasswordCode::createForUser($user);
2121
}
2222

23-
public function buildInviteCode(UserInterface $user, string $email, ?string $role = null): InviteCode
23+
public function buildInviteCode(UserInterface $user, string $email, string $role = null): InviteCode
2424
{
2525
return \App\Entity\InviteCode::createForUser($user, $email, $role);
2626
}

0 commit comments

Comments
 (0)