Skip to content

Commit b9f53cd

Browse files
committed
Lint fix
1 parent 11ace0f commit b9f53cd

3 files changed

Lines changed: 5 additions & 5 deletions

storage/src/get_bucket_encryption_enforcement_config.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
/**
3030
* Retrieves the current encryption enforcement configurations for a bucket.
31-
*
31+
*
3232
* @param string $bucketName The ID of your GCS bucket (e.g. "my-bucket").
3333
*/
3434
function get_bucket_encryption_enforcement_config(string $bucketName): void

storage/src/remove_all_bucket_encryption_enforcement_config.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@
2828

2929
/**
3030
* Removes all encryption enforcement configurations from a bucket.
31-
*
31+
*
3232
* @param string $bucketName The ID of your GCS bucket (e.g. "my-bucket").
3333
*/
3434
function remove_all_bucket_encryption_enforcement_config(string $bucketName): void
3535
{
3636
$storage = new StorageClient();
3737
$bucket = $storage->bucket($bucketName);
3838

39-
// Setting these values to null in an update call will remove the
39+
// Setting these values to null in an update call will remove the
4040
// specific enforcement policies from the bucket metadata.
4141
$options = [
4242
'encryption' => [

storage/src/set_bucket_encryption_enforcement_config.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
/**
3030
* Configures a bucket to enforce specific encryption types (e.g., CMEK-only).
31-
*
31+
*
3232
* @param string $bucketName The ID of your GCS bucket (e.g. "my-bucket").
3333
* @param string $kmsKeyName The name of the KMS key to be used as the default (e.g. "projects/my-project/...").
3434
*/
@@ -37,7 +37,7 @@ function set_bucket_encryption_enforcement_config(string $bucketName, string $km
3737
$storage = new StorageClient();
3838
$bucket = $storage->bucket($bucketName);
3939

40-
// This configuration enforces that all objects uploaded to the bucket
40+
// This configuration enforces that all objects uploaded to the bucket
4141
// must use Customer Managed Encryption Keys (CMEK).
4242
$options = [
4343
'encryption' => [

0 commit comments

Comments
 (0)