From 459fb4dbb32a20c3597f8fa7da4e5b1e2d439508 Mon Sep 17 00:00:00 2001 From: Jacek Kowalski <Jacek@jacekk.info> Date: Fri, 21 Jun 2019 23:07:05 +0000 Subject: [PATCH] Rename $jsonContent to $finalMapping --- parse.php | 13 ++----------- 1 files changed, 2 insertions(+), 11 deletions(-) diff --git a/parse.php b/parse.php index ebd18cd..92acb04 100644 --- a/parse.php +++ b/parse.php @@ -82,21 +82,12 @@ $db->addMapping($mapping); - $jsonContent = []; - foreach($db->getAll() as $vehicle) { - $jsonContent[$vehicle['id']] = $source['mapper']($vehicle['num']); - } - - $json = json_encode($jsonContent); - if(!file_put_contents($source['result_temp'], $json)) { - throw new Exception('Result save failed'); - } - rename($source['result_temp'], $source['result']); + $finalMapping = createMapping($db, $source['mapper'], $source); $logger->info('Creating vehicle list...'); - createVehiclesList($mapper->getTTSSTrips(), $jsonContent, $source); + createVehiclesList($mapper->getTTSSTrips(), $finalMapping, $source); $logger->info('Finished'); } catch(Throwable $e) { -- Gitblit v1.9.1