Skip to content

Commit e422a1b

Browse files
committed
Add 1.8.x support
1 parent 1b5072f commit e422a1b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docs/examples/databases/decrement-document-attribute.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use Appwrite\Services\Databases;
66
$client = (new Client())
77
->setEndpoint('https://<REGION>.cloud.appwrite.io/v1') // Your API Endpoint
88
->setProject('<YOUR_PROJECT_ID>') // Your project ID
9-
->setKey('<YOUR_API_KEY>'); // Your secret API key
9+
->setSession(''); // The user session to authenticate with
1010

1111
$databases = new Databases($client);
1212

docs/examples/databases/increment-document-attribute.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use Appwrite\Services\Databases;
66
$client = (new Client())
77
->setEndpoint('https://<REGION>.cloud.appwrite.io/v1') // Your API Endpoint
88
->setProject('<YOUR_PROJECT_ID>') // Your project ID
9-
->setKey('<YOUR_API_KEY>'); // Your secret API key
9+
->setSession(''); // The user session to authenticate with
1010

1111
$databases = new Databases($client);
1212

docs/examples/tablesdb/decrement-row-column.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use Appwrite\Services\TablesDb;
66
$client = (new Client())
77
->setEndpoint('https://<REGION>.cloud.appwrite.io/v1') // Your API Endpoint
88
->setProject('<YOUR_PROJECT_ID>') // Your project ID
9-
->setKey('<YOUR_API_KEY>'); // Your secret API key
9+
->setSession(''); // The user session to authenticate with
1010

1111
$tablesDb = new TablesDb($client);
1212

docs/examples/tablesdb/increment-row-column.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use Appwrite\Services\TablesDb;
66
$client = (new Client())
77
->setEndpoint('https://<REGION>.cloud.appwrite.io/v1') // Your API Endpoint
88
->setProject('<YOUR_PROJECT_ID>') // Your project ID
9-
->setKey('<YOUR_API_KEY>'); // Your secret API key
9+
->setSession(''); // The user session to authenticate with
1010

1111
$tablesDb = new TablesDb($client);
1212

0 commit comments

Comments
 (0)