Alex\BehatLauncher\Behat\OutputFile::append PHP Метод

append() публичный Метод

Appends a content to the file.
public append ( $content ) : OutputFile
Результат OutputFile
    public function append($content)
    {
        $fp = fopen($this->getOrCreatePath(), 'a+');
        fwrite($fp, $content);
        fclose($fp);
        return $this;
    }