Alex\BehatLauncher\Behat\OutputFile::delete PHP Méthode

delete() public méthode

Deletes the file.
public delete ( ) : OutputFile
Résultat OutputFile
    public function delete()
    {
        if ($this->path !== null && file_exists($this->path)) {
            unlink($this->path);
        }
        return $this;
    }