Skip to content

Commit b7fccb2

Browse files
author
Frank Natividad
committed
Add missing accessId
1 parent 2ac043d commit b7fccb2

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

‎storage/src/activate_hmac_key.php‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* @param string $options options for the new HMAC key.
3434
*
3535
*/
36-
function activate_hmac_key($options = ['projectId' => 'your-project-id'])
36+
function activate_hmac_key($accessId, $options = ['projectId' => 'your-project-id'])
3737
{
3838
$storage = new StorageClient();
3939
$hmacKey = $storage->hmacKey($accessId, $options);

‎storage/src/deactivate_hmac_key.php‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* @param string $options options for the new HMAC key.
3434
*
3535
*/
36-
function deactivate_hmac_key($options = ['projectId' => 'your-project-id'])
36+
function deactivate_hmac_key($accessId, $options = ['projectId' => 'your-project-id'])
3737
{
3838
$storage = new StorageClient();
3939
$hmacKey = $storage->hmacKey($accessId, $options);

‎storage/src/delete_hmac_key.php‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* @param string $options options for the new HMAC key.
3434
*
3535
*/
36-
function delete_hmac_key($options = ['projectId' => 'your-project-id'])
36+
function delete_hmac_key($accessId, $options = ['projectId' => 'your-project-id'])
3737
{
3838
$storage = new StorageClient();
3939
$hmacKey = $storage->hmacKey($accessId, $options);

‎storage/src/get_hmac_key.php‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* @param string $options options for the new HMAC key.
3434
*
3535
*/
36-
function get_hmac_key($options = ['projectId' => 'your-project-id'])
36+
function get_hmac_key($accessId, $options = ['projectId' => 'your-project-id'])
3737
{
3838
$storage = new StorageClient();
3939
$hmacKey = $storage->hmacKey($accessId, $options);

0 commit comments

Comments
 (0)