phcbf autofixes

This commit is contained in:
Dennis Eichhorn 2023-05-28 12:38:27 +00:00
parent a208f09732
commit a2ffb8cc2f
2 changed files with 5 additions and 4 deletions

1
.gitignore vendored
View File

@ -1 +1,2 @@
vendor
Build

View File

@ -65,8 +65,8 @@ final class Installer extends InstallerAbstract
}
/** @var array $types */
$types = \json_decode($fileContent, true);
$fuelTypes = self::createFuelTypes($app, $types);
$types = \json_decode($fileContent, true);
$fuelTypes = self::createFuelTypes($app, $types);
/* Fuel types */
$fileContent = \file_get_contents(__DIR__ . '/Install/vehicletype.json');
@ -75,8 +75,8 @@ final class Installer extends InstallerAbstract
}
/** @var array $types */
$types = \json_decode($fileContent, true);
$vehicleTypes = self::createVehicleTypes($app, $types);
$types = \json_decode($fileContent, true);
$vehicleTypes = self::createVehicleTypes($app, $types);
}
/**