Skip to content

Commit 3ecb69b

Browse files
Update quickstart.php
1 parent 68f35d2 commit 3ecb69b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

storage/quickstart.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,17 @@
2323
use Google\Cloud\Storage\StorageClient;
2424

2525
# Your Google Cloud Platform project ID
26-
$projectId = 'YOUR_PROJECT_ID';
26+
#$projectId = 'YOUR_PROJECT_ID';
27+
$projectId = 'vnd-practice-gcp';
2728

2829
# Instantiates a client
2930
$storage = new StorageClient([
3031
'projectId' => $projectId
3132
]);
3233

3334
# The name for the new bucket
34-
$bucketName = 'my-new-bucket';
35+
#$bucketName = 'my-new-bucket';
36+
$bucketName = 'itrack-testing';
3537

3638
# Creates the new bucket
3739
$bucket = $storage->createBucket($bucketName);

0 commit comments

Comments
 (0)