Skip to content

Commit

Permalink
(feat): changed method name from put to write
Browse files Browse the repository at this point in the history
  • Loading branch information
marufmax committed Oct 7, 2023
1 parent 9ed1512 commit 891ee08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Storage/FlysystemStorage.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public function fetch($key)
*/
public function save($key, CacheEntry $data)
{
return $this->filesystem->put($key, serialize($data));
$this->filesystem->write($key, serialize($data));
}

/**
Expand Down

0 comments on commit 891ee08

Please sign in to comment.