Amranidev\ScaffoldInterface\Filesystem\Filesystem::append PHP Method

append() public method

File append.
public append ( strign $path, string $content ) : integer
$path strign
$content string
return integer
    public function append($path, $content)
    {
        return file_put_contents($path, $content, FILE_APPEND | LOCK_EX);
    }