Skip to content

Commit

Permalink
Linter
Browse files Browse the repository at this point in the history
  • Loading branch information
fogelito committed Sep 4, 2024
1 parent b60be79 commit 68aec32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Storage/Device/Local.php
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ public function deletePath(string $path): bool

foreach ($files as $file) {
if (is_dir($file)) {
$this->deletePath(\substr_replace($file, '', 0, \strlen($this->getRoot() . DIRECTORY_SEPARATOR)));
$this->deletePath(\substr_replace($file, '', 0, \strlen($this->getRoot().DIRECTORY_SEPARATOR)));
} else {
$this->delete($file, true);
}
Expand Down

0 comments on commit 68aec32

Please sign in to comment.