1
0
Fork 0
mirror of synced 2024-09-19 19:07:21 +12:00
appwrite/app/sdks/php/docs/examples/teams/update-collection.md
2019-06-09 21:13:55 +03:00

15 lines
No EOL
222 B
Markdown

<?php
use Appwrite\Client;
use Appwrite\Services\Teams;
$client = new Client();
$client
setProject('')
setKey('')
;
$teams = new Teams($client);
$result = $teams->updateCollection('[COLLECTION_ID]', '[NAME]');