Fix parsing input values

This commit is contained in:
2021-01-12 10:56:34 +03:00
parent 899da1a967
commit d12744296a
4 changed files with 58 additions and 3 deletions

View File

@@ -33,7 +33,7 @@ class HRCCommand extends Command
private function prepareRaw()
{
$source_file = base_path() . '/../temp/' . $this->argument('source');
return json_decode(file_get_contents($source_file));
return parse_ini_file($source_file);
}
public function save($result)