remove PHP parameter typing

Older PHPs don't seem to like it.
This commit is contained in:
Sarah Hoffmann
2018-11-24 19:05:13 +01:00
parent e5b7424592
commit 5e072dabc3

View File

@@ -9,7 +9,7 @@ class AddressLevelParser
{
private $aLevels;
public function __construct(string $sDescriptionFile)
public function __construct($sDescriptionFile)
{
$sJson = file_get_contents($sDescriptionFile);
$this->aLevels = json_decode($sJson, true);