Jacek Kowalski
2019-06-21 f6f79198b6467435fd7caccd2067eb0a29c97787
parse.php
@@ -82,16 +82,7 @@
      
      $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']);
      createMapping($db, $source['mapper'], $source);
      
      
      $logger->info('Creating vehicle list...');