Try to fix TravisCI failing on route test

This commit is contained in:
Bubka
2020-03-05 12:56:35 +01:00
parent 6a694280cd
commit 53ada0bfaa
3 changed files with 5 additions and 4 deletions

View File

@ -15,6 +15,6 @@ class SinglePageController extends Controller
{
$appSettings = \Illuminate\Support\Facades\DB::table('options')->pluck('value', 'key')->toJson();
return view("landing")->with('appSettings', $appSettings);;
return view('landing')->with('appSettings', $appSettings);
}
}