Fix empty array in node config YAML
This commit is contained in:
parent
0908830003
commit
dda13f80c7
1 changed files with 1 additions and 1 deletions
|
@ -181,7 +181,7 @@ class Node extends Model
|
|||
*/
|
||||
public function getYamlConfiguration()
|
||||
{
|
||||
return Yaml::dump($this->getConfiguration(), 4, 2);
|
||||
return Yaml::dump($this->getConfiguration(), 4, 2, Yaml::DUMP_EMPTY_ARRAY_AS_SEQUENCE);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue