Skip to content

Commit

Permalink
fix: realtime events payload
Browse files Browse the repository at this point in the history
  • Loading branch information
TorstenDittmann committed May 17, 2022
1 parent 3c8c171 commit 00a81dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/examples/functions/create-deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ $client

$functions = new Functions($client);

$result = $functions->createDeployment('[FUNCTION_ID]', '[ENTRYPOINT]', new \CURLFile('/path/to/file.png', 'image/png', 'file.png'), false);
$result = $functions->createDeployment('[FUNCTION_ID]', '[ENTRYPOINT]', 'file.png', false);
2 changes: 1 addition & 1 deletion docs/examples/storage/create-file.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ $client

$storage = new Storage($client);

$result = $storage->createFile('[BUCKET_ID]', '[FILE_ID]', new \CURLFile('/path/to/file.png', 'image/png', 'file.png'));
$result = $storage->createFile('[BUCKET_ID]', '[FILE_ID]', 'file.png');

0 comments on commit 00a81dd

Please sign in to comment.