Skip to content

Commit a42a1ba

Browse files
committed
Merge branch 'add-support-for-laravel-7' of https://github.com/Laravel-Backpack/CRUD into add-support-for-laravel-7
2 parents ee737a1 + b10ed31 commit a42a1ba

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

src/app/Library/Auth/AuthenticatesUsers.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,4 +199,4 @@ protected function guard()
199199
{
200200
return Auth::guard();
201201
}
202-
}
202+
}

src/app/Library/Auth/ConfirmsPasswords.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,4 @@ protected function validationErrorMessages()
6868
{
6969
return [];
7070
}
71-
}
71+
}

src/app/Library/Auth/RedirectsUsers.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ public function redirectPath()
1717

1818
return property_exists($this, 'redirectTo') ? $this->redirectTo : '/home';
1919
}
20-
}
20+
}

src/app/Library/Auth/RegistersUsers.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,4 @@ protected function registered(Request $request, $user)
6565
{
6666
//
6767
}
68-
}
68+
}

src/app/Library/Auth/ResetsPasswords.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,4 +183,4 @@ protected function guard()
183183
{
184184
return Auth::guard();
185185
}
186-
}
186+
}

src/app/Library/Auth/SendsPasswordResetEmails.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,4 +106,4 @@ public function broker()
106106
{
107107
return Password::broker();
108108
}
109-
}
109+
}

src/app/Library/Auth/ThrottlesLogins.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,4 +122,4 @@ public function decayMinutes()
122122
{
123123
return property_exists($this, 'decayMinutes') ? $this->decayMinutes : 1;
124124
}
125-
}
125+
}

src/app/Library/Auth/VerifiesEmails.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,4 +92,4 @@ public function resend(Request $request)
9292
? new Response('', 202)
9393
: back()->with('resent', true);
9494
}
95-
}
95+
}

0 commit comments

Comments
 (0)