Skip to content

Commit

Permalink
Merge pull request #87 from buzzclue/patch-1
Browse files Browse the repository at this point in the history
Typo $meta to $attribute
  • Loading branch information
barryvdh committed Mar 24, 2022
2 parents e342ea6 + a906c45 commit 064d5b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Driver.php
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ protected function _dirExists($path)

/** @var StorageAttributes $meta */
foreach ($this->listContents($dir) as $attribute) {
if ($attribute->isDir() && $this->_basename($meta->path()) == $basename) {
if ($attribute->isDir() && $this->_basename($attribute->path()) == $basename) {
return true;
}
}
Expand Down

0 comments on commit 064d5b2

Please sign in to comment.