mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +00:00
15 lines
283 B
Markdown
15 lines
283 B
Markdown
<?php
|
|
|
|
use Appwrite\Client;
|
|
use Appwrite\Services\Projects;
|
|
|
|
$client = new Client();
|
|
|
|
$client
|
|
setProject('')
|
|
setKey('')
|
|
;
|
|
|
|
$projects = new Projects($client);
|
|
|
|
$result = $projects->updateTask('[PROJECT_ID]', '[TASK_ID]', '[NAME]', 'play', '', 0, 'GET', 'https://example.com'); |