$this->
writeLine($text,
$depth * 4
);
// output defaults
if ($defaultArray) { $this->
writeLine(''
);
$message = \
count($defaultArray) > 1 ? 'Defaults' : 'Default';
$this->
writeLine('# '.
$message.':',
$depth * 4 + 4
);
$this->
writeArray($defaultArray,
$depth + 1
);
} if (\
is_array($example)) { $this->
writeLine(''
);
$message = \
count($example) > 1 ? 'Examples' : 'Example';
$this->
writeLine('# '.
$message.':',
$depth * 4 + 4
);
$this->
writeArray(array_map(Inline::
dump(...
),
$example),
$depth + 1
);
}