Barryvdh\Debugbar\Storage\FilesystemStorage::clear PHP Method

clear() public method

{@inheritDoc}
public clear ( )
    public function clear()
    {
        foreach (Finder::create()->files()->name('*.json')->in($this->dirname) as $file) {
            $this->files->delete($file->getRealPath());
        }
    }