WIP Impelement more stuff

This commit is contained in:
Björn Fromme
2023-10-04 15:10:16 +02:00
parent dec8feedf2
commit cc1ab396af
35 changed files with 928 additions and 177 deletions
+2 -2
View File
@@ -32,8 +32,8 @@ class Countries
return $countries;
}
public function get(int $id): ?Country
public function get(string $token): ?Country
{
return $this->getAll()[$id] ?? null;
return $this->getAll()[$token] ?? null;
}
}