Apply fixes from StyleCI

This commit is contained in:
Marcel Pociot
2020-11-01 16:44:06 +00:00
committed by StyleCI Bot
parent ce945e1326
commit c56f05c030
7 changed files with 14 additions and 24 deletions

View File

@@ -23,10 +23,10 @@ trait LoadsViews
$data = array_merge($data, [
'request' => $connection->laravelRequest ?? null,
]);
try {
return stream_for($twig->render('template', $data));
} catch (\Throwable $e) {
var_dump($e->getMessage());
}
try {
return stream_for($twig->render('template', $data));
} catch (\Throwable $e) {
var_dump($e->getMessage());
}
}
}