Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
eduayme authored and StyleCIBot committed Oct 23, 2019
1 parent 1a51555 commit 42167af
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 16 deletions.
32 changes: 16 additions & 16 deletions config/larecipe.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
*/

'docs' => [
'route' => '/docs',
'path' => '/resources/docs',
'landing' => 'description',
'route' => '/docs',
'path' => '/resources/docs',
'landing' => 'description',
'middleware' => ['web'],
],

Expand All @@ -35,8 +35,8 @@
'versions' => [
'default' => '1.0',
'published' => [
'1.0'
]
'1.0',
],
],

/*
Expand All @@ -53,7 +53,7 @@

'settings' => [
'auth' => false,
'ga_id' => ''
'ga_id' => '',
],

/*
Expand All @@ -71,7 +71,7 @@

'cache' => [
'enabled' => false,
'period' => 5
'period' => 5,
],

/*
Expand All @@ -92,13 +92,13 @@
'default' => 'algolia',
'engines' => [
'internal' => [
'index' => ['h2', 'h3']
'index' => ['h2', 'h3'],
],
'algolia' => [
'key' => '',
'index' => ''
]
]
'index' => '',
],
],
],

/*
Expand All @@ -119,7 +119,7 @@
'fa_v4_shims' => true, // Add FontAwesome v4 shims prevent BC break
'colors' => [
'primary' => '#bf0712',
'secondary' => '#2b9cf2'
'secondary' => '#2b9cf2',
],
],

Expand All @@ -145,7 +145,7 @@
'url' => '',
'image' => '',
'description' => '',
]
],
],

/*
Expand All @@ -167,8 +167,8 @@
'services' => [
'disqus' => [
'site_name' => 'RescueApp', // yoursite.disqus.com
]
]
],
],
],

/*
Expand All @@ -185,5 +185,5 @@

'packages' => [
'path' => 'larecipe-components',
]
],
];
3 changes: 3 additions & 0 deletions routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,18 @@

Route::get('locale-ca', function () {
session(['locale' => 'ca']);

return back();
});

Route::get('locale-es', function () {
session(['locale' => 'es']);

return back();
});

Route::get('locale-en', function () {
session(['locale' => 'en']);

return back();
});

0 comments on commit 42167af

Please sign in to comment.