Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

Fixed typo in variable name #168

Merged
merged 2 commits into from
May 1, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Storage/Adapter/Filesystem.php
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ public function setTags($key, array $tags)
$filespec = $this->getFileSpec($key);

if (! $tags) {
$this->unlink($this->formatTagFilename($filespac));
$this->unlink($this->formatTagFilename($filespec));
return true;
}

Expand Down