Alex\BehatLauncher\Behat\OutputFile::append PHP Method

append() public method

Appends a content to the file.
public append ( $content ) : OutputFile
return OutputFile
    public function append($content)
    {
        $fp = fopen($this->getOrCreatePath(), 'a+');
        fwrite($fp, $content);
        fclose($fp);
        return $this;
    }