This commit is contained in:
2024-11-09 19:05:37 +08:00
parent 58e6157f40
commit a2cc18a434
2 changed files with 4 additions and 2 deletions

View File

@@ -18,7 +18,7 @@ class ArgumentParser
/**
* @var array Parsed and ready to use
*/
protected array $parsed;
protected array $parsed = [];
/**
* Constructor

View File

@@ -62,7 +62,8 @@ abstract class AbstractConverter
$this->setCollectionVars();
foreach ($collection->iterate() as $path => $item) {
// $this->requests[$path][] = $this->makeRequest($item);
$this->writeRequest($this->makeRequest($item), $path);
$request = $this->makeRequest($item);
$this->writeRequest($request, $path);
}
return $this;
}
@@ -103,6 +104,7 @@ abstract class AbstractConverter
foreach ($this->collection?->variable ?? [] as $var) {
Environment::instance()->setCustomVar($var->key, $var->value);
}
return $this;
}