DbPatch_Core_Writer::indent PHP Method

indent() public method

Indent output with spaces
public indent ( integer $spaces = 4 ) : DbPatch_Core_Writer
$spaces integer
return DbPatch_Core_Writer
    public function indent($spaces = 4)
    {
        return $this->output(str_repeat(' ', $spaces));
    }