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

Failed Conditions
Pull Request — main (#1456)
by
unknown
21:58 queued 17:10
created
src/engine/Default/admin/unigen/game_edit_processing.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,8 +6,7 @@
 block discarded – undo
6 6
 
7 7
 // Get the dates ("|" sets hr/min/sec to 0)
8 8
 $join = DateTime::createFromFormat('d/m/Y|', Request::get('game_join'));
9
-$start = empty(Request::get('game_start')) ? $join :
10
-	DateTime::createFromFormat('d/m/Y|', Request::get('game_start'));
9
+$start = empty(Request::get('game_start')) ? $join : DateTime::createFromFormat('d/m/Y|', Request::get('game_start'));
11 10
 $end = DateTime::createFromFormat('d/m/Y|', Request::get('game_end'));
12 11
 
13 12
 $game = SmrGame::getGame($var['game_id']);
Please login to merge, or discard this patch.
src/engine/Default/admin/unigen/game_create_processing.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,8 +19,7 @@
 block discarded – undo
19 19
 if ($join === false) {
20 20
 	create_error('Join Date is not valid!');
21 21
 }
22
-$start = empty(Request::get('game_start')) ? $join :
23
-	DateTime::createFromFormat('d/m/Y|', Request::get('game_start'));
22
+$start = empty(Request::get('game_start')) ? $join : DateTime::createFromFormat('d/m/Y|', Request::get('game_start'));
24 23
 if ($start === false) {
25 24
 	create_error('Start Date is not valid!');
26 25
 }
Please login to merge, or discard this patch.