Skip to content

Commit

Permalink
Merge pull request LavaLite#369 from LavaLite/analysis-64jGw6
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
georgemjohn authored Sep 23, 2021
2 parents a64313c + e3acf4b commit 33b03d0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
4 changes: 2 additions & 2 deletions routes/api.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

Route::get('/', 'PublicController@home');

include ('litepie.php');
include 'litepie.php';

Route::group(
[
Expand All @@ -25,6 +25,6 @@
'where' => ['trans' => Trans::keys('|')],
],
function () {
include ('litepie.php');
include 'litepie.php';
}
);
2 changes: 0 additions & 2 deletions routes/litepie.php
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
<?php

Route::group(

[
'prefix' => '{guard}',
'as' => 'guard.',
'where' => ['guard' => implode('|', array_keys(config('auth.guards')))],
],

function () {
Auth::routes();
Route::get('/', 'ResourceController@home')->name('home');
Expand Down
5 changes: 2 additions & 3 deletions routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@

Route::get('/', 'PublicController@home');


include ('litepie.php');
include 'litepie.php';

Route::group(
[
Expand All @@ -26,6 +25,6 @@
'where' => ['trans' => Trans::keys('|')],
],
function () {
include ('litepie.php');
include 'litepie.php';
}
);

0 comments on commit 33b03d0

Please sign in to comment.