Skip to content

Commit

Permalink
Merge pull request #69 from jlsjonas/patch-2
Browse files Browse the repository at this point in the history
Improve Gueststate's extensibility
  • Loading branch information
aocneanu authored Sep 27, 2018
2 parents fb0eded + a859e74 commit 428a278
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/Http/Responses/GuestState.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public function toResponse($request)
];
}

private function meta()
protected function meta()
{
return [
'appName' => config('app.name'),
Expand All @@ -25,7 +25,7 @@ private function meta()
];
}

private function i18n()
protected function i18n()
{
return [
app()->getLocale() => [
Expand All @@ -42,7 +42,7 @@ private function i18n()
];
}

private function routes()
protected function routes()
{
$authRoutes = collect(['login', 'password.email', 'password.reset']);

Expand Down

0 comments on commit 428a278

Please sign in to comment.