We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -35,13 +35,13 @@ |
||
35 | 35 | const USER_SCORE_NAME = 'User Score'; |
36 | 36 | $hofTypes = [DONATION_NAME => true, USER_SCORE_NAME => true]; |
37 | 37 | foreach ($dbResult->records() as $dbRecord) { |
38 | - $hof =& $hofTypes; |
|
38 | + $hof = & $hofTypes; |
|
39 | 39 | $typeList = explode(':', $dbRecord->getString('type')); |
40 | 40 | foreach ($typeList as $type) { |
41 | 41 | if (!isset($hof[$type])) { |
42 | 42 | $hof[$type] = []; |
43 | 43 | } |
44 | - $hof =& $hof[$type]; |
|
44 | + $hof = & $hof[$type]; |
|
45 | 45 | } |
46 | 46 | $hof = true; |
47 | 47 | } |