Skip to content

Commit

Permalink
sync
Browse files Browse the repository at this point in the history
  • Loading branch information
dermatthes committed Apr 25, 2024
1 parent 7028ff8 commit 6f419f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Driver/FileSystemObjectStoreDriver.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public function has(string $objectId): bool
* @throws FilesystemException
* @throws PathOutOfBoundsException
*/
public function put(string $objectId, $content, array $metadata = null)
public function put(string $objectId, $content, array $metadata = null, bool $validateGeneration = false)
{
$file = $this->rootDir->withSubPath($objectId)->asFile();
$dir = $file->getDirname()->asDirectory();
Expand All @@ -92,7 +92,7 @@ public function put(string $objectId, $content, array $metadata = null)
* @param array|null $metadata
* @return mixed|void
*/
public function putStream(string $objectId, $resource, array $metadata = null)
public function putStream(string $objectId, $resource, array $metadata = null, bool $validateGeneration = false)
{
throw new InvalidArgumentException('Not implemented yet.');
// TODO: Implement putStream() method.
Expand Down

0 comments on commit 6f419f6

Please sign in to comment.