We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -10,7 +10,7 @@ discard block |
||
| 10 | 10 | */ |
| 11 | 11 | class VoteSite { |
| 12 | 12 | |
| 13 | - private static ?array $CACHE_TIMEOUTS = null; |
|
| 13 | + private static ? array $CACHE_TIMEOUTS = null; |
|
| 14 | 14 | |
| 15 | 15 | // NOTE: link IDs should never be changed! |
| 16 | 16 | public const LINK_ID_TWG = 3; |
@@ -30,7 +30,7 @@ discard block |
||
| 30 | 30 | |
| 31 | 31 | private static function getSiteData(int $linkID): array { |
| 32 | 32 | // This can't be a static/constant attribute due to `url_func` closures. |
| 33 | - return match ($linkID) { |
|
| 33 | + return match($linkID) { |
|
| 34 | 34 | self::LINK_ID_TWG => [ |
| 35 | 35 | 'img_default' => 'twg.png', |
| 36 | 36 | 'img_star' => 'twg_vote.png', |
@@ -28,7 +28,7 @@ |
||
| 28 | 28 | } |
| 29 | 29 | |
| 30 | 30 | public function getBoolean(string $name): bool { |
| 31 | - return match ($this->dbRecord[$name]) { |
|
| 31 | + return match($this->dbRecord[$name]) { |
|
| 32 | 32 | 'TRUE' => true, |
| 33 | 33 | 'FALSE' => false, |
| 34 | 34 | }; |
@@ -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 | } |