We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
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
Bug
introduced
by
![]() |
|||
15 | } |
||
16 |