Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

Issues (412)

src/htdocs/error.php (1 issue)

Labels
Severity
1
<?php declare(strict_types=1);
2
3
use Smr\Request;
4
5
try {
6
	require_once('../bootstrap.php');
7
8
	$template = Smr\Template::getInstance();
9
	$template->assign('Body', 'login/error.php');
10
	$template->assign('ErrorMessage', Request::get('msg', 'No error message found!'));
11
	$template->display('login/skeleton.php');
12
13
} catch (Throwable $e) {
14
	handleException($e);
0 ignored issues
show
The function handleException was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

14
	/** @scrutinizer ignore-call */ 
15
 handleException($e);
Loading history...
15
}
16