@@ -202,7 +202,7 @@ |
||
202 | 202 | public function getTeam($id) : ?Team { |
203 | 203 | $key = array_search($id, array_map(static function($a) { |
204 | 204 | return $a->getId(); |
205 | - }, $this->teams), true); |
|
205 | + }, $this->teams), true); |
|
206 | 206 | return ($key !== false ? $this->teams[$key] : null); |
207 | 207 | } |
208 | 208 |