Apply fixes from StyleCI

This commit is contained in:
Marcel Pociot
2019-06-23 20:25:02 +00:00
committed by StyleCI Bot
parent 5d2be82a57
commit 9be9cd2ecb
4 changed files with 5 additions and 7 deletions

View File

@@ -115,14 +115,14 @@ class TestController extends Controller
public function echoesConfig()
{
return [
'app.env' => config('app.env')
'app.env' => config('app.env'),
];
}
public function echoesUrlPathParameters($param)
{
return [
'param' => $param
'param' => $param,
];
}