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

makeFilename() public method

Create the filename for the data, based on the id.
public makeFilename ( $id ) : string
$id
return string
    public function makeFilename($id)
    {
        return $this->dirname . basename($id) . ".json";
    }