We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -44,8 +44,8 @@ |
||
44 | 44 | */ |
45 | 45 | public function getValue() : int { |
46 | 46 | if ($this->rank == self::RANK_JACK || |
47 | - $this->rank == self::RANK_QUEEN || |
|
48 | - $this->rank == self::RANK_KING) { |
|
47 | + $this->rank == self::RANK_QUEEN || |
|
48 | + $this->rank == self::RANK_KING) { |
|
49 | 49 | return 10; |
50 | 50 | } elseif ($this->isAce()) { |
51 | 51 | return 11; |
@@ -73,7 +73,7 @@ |
||
73 | 73 | return self::RANK_NAMES[$this->rank]; |
74 | 74 | } else { |
75 | 75 | // For normal pip (non-face) cards, name and rank are the same. |
76 | - return (string) $this->rank; |
|
76 | + return (string)$this->rank; |
|
77 | 77 | } |
78 | 78 | } |
79 | 79 | } |