Skip to content

Commit 5781a90

Browse files
committed
CS: PSR-2
1 parent 7a57a68 commit 5781a90

10 files changed

Lines changed: 3 additions & 8 deletions

File tree

Database/Seeders/UsherTableSeeder.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
class UsherTableSeeder extends Seeder
77
{
8-
98
/**
109
* @var RoleRepository
1110
*/

Entities/Usher/Role.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
*/
1313
class Role extends UsherRole implements RoleInterface
1414
{
15-
1615
/**
1716
* @ORM\ManyToMany(targetEntity="User", mappedBy="roles")
1817
* @var ArrayCollection|\Maatwebsite\Usher\Contracts\Users\User[]

Entities/Usher/User.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
*/
1414
class User extends UsherUser implements UserInterface
1515
{
16-
1716
/**
1817
* Traits
1918
*/

Providers/UserServiceProvider.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
class UserServiceProvider extends ServiceProvider
77
{
8-
98
/**
109
* Indicates if loading of the provider is deferred.
1110
*

Repositories/Sentinel/SentinelAuthentication.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ public function activate($userId, $code)
7777
if ($success) {
7878
event(new UserHasActivatedAccount($user));
7979
}
80+
8081
return $success;
8182
}
8283

Repositories/Sentry/SentryAuthentication.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ public function activate($userId, $code)
6767
if ($success) {
6868
event(new UserHasActivatedAccount($user));
6969
}
70+
7071
return $success;
7172
} catch (\Exception $e) {
7273
return false;

Repositories/Usher/UsherAuthentication.php

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

77
class UsherAuthentication implements Authentication
88
{
9-
109
/**
1110
* @var Guard
1211
*/

Repositories/Usher/UsherRoleRepository.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
class UsherRoleRepository implements RoleRepository
77
{
8-
98
/**
109
* @var UsherRoleRepo
1110
*/

Repositories/Usher/UsherUserRepository.php

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

1111
class UsherUserRepository implements UserRepository
1212
{
13-
1413
/**
1514
* @var UsherUserRepo
1615
*/

Resources/lang/de/auth.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
'welcome title' => 'Willkommen',
1717
'please confirm email' => 'Bitte bestätigen Sie Ihre E-Mail-Adresse, indem Sie auf den Link unten.',
1818
'additional confirm email message' => 'We may need to send you critical information about our service and it is important that we have an accurate email address.',
19-
'Möglicherweise müssen wir Ihnen wichtige Informationen über unseren Service zu senden, es ist wichtig, dass wir eine genaue E-Mail Adresse haben.',
19+
'Möglicherweise müssen wir Ihnen wichtige Informationen über unseren Service zu senden, es ist wichtig, dass wir eine genaue E-Mail Adresse haben.',
2020
'confirm email button' => 'bestätigen Email-Adresse',
2121
'end greeting' => 'Das Team',
2222
];

0 commit comments

Comments
 (0)