PhpBench\Storage\Driver\Xml\XmlDriver::delete PHP Method

delete() public method

public delete ( $uuid )
    public function delete($uuid)
    {
        if (!$this->has($uuid)) {
            throw new \InvalidArgumentException(sprintf('Cannot find run with UUID "%s"', $uuid));
        }
        $this->filesystem->remove($this->getPath($uuid));
    }