Skip to content

Commit

Permalink
[5.x] Fix Filesystem AbstractAdapter put method return (#11032)
Browse files Browse the repository at this point in the history
  • Loading branch information
godismyjudge95 authored Oct 31, 2024
1 parent 0cd579a commit b8f73b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Filesystem/AbstractAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public function put($path, $contents)
{
$this->makeDirectory(pathinfo($path)['dirname']);

$this->filesystem->put($this->normalizePath($path), $contents);
return $this->filesystem->put($this->normalizePath($path), $contents);
}

public function delete($path)
Expand Down

0 comments on commit b8f73b5

Please sign in to comment.