From a2ffb8cc2fd085b6e6b4f1bbdaa6b8c4b89a4f03 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sun, 28 May 2023 12:38:27 +0000 Subject: [PATCH] phcbf autofixes --- .gitignore | 1 + Admin/Installer.php | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 22d0d82..03b6968 100755 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ vendor +Build diff --git a/Admin/Installer.php b/Admin/Installer.php index f45e934..d274d97 100755 --- a/Admin/Installer.php +++ b/Admin/Installer.php @@ -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); } /**