Sets the indentation pad string.
string $pad A string that will be prepended to dumped lines, repeated by nesting level:
string The previous indent pad
public function setIndentPad(string $pad) : string { $prev = $this->indentPad; $this->indentPad = $pad; return $prev; }