Various code cleanup.

This commit is contained in:
James Cole
2021-04-07 07:28:43 +02:00
parent 4ddcb0c965
commit f12744ad8c
180 changed files with 714 additions and 721 deletions

View File

@@ -113,7 +113,7 @@ trait RequestInformation
return $content;
}
return '<p>' . trans('firefly.route_has_no_help') . '</p>'; // @codeCoverageIgnore
return '<p>' . trans('firefly.route_has_no_help') . '</p>';
}
/**
@@ -180,7 +180,7 @@ trait RequestInformation
$shownDemo = app('preferences')->get($key, false)->data;
}
if (!is_bool($shownDemo)) {
$shownDemo = true; // @codeCoverageIgnore
$shownDemo = true;
}
return $shownDemo;