1
0
Fork 0
mirror of synced 2024-09-11 23:26:09 +12:00
appwrite/app/sdks/php/docs/examples/account/get-security.md

15 lines
198 B
Markdown
Raw Normal View History

2019-05-09 18:54:39 +12:00
<?php
use Appwrite\Client;
use Appwrite\Services\Account;
$client = new Client();
$client
setProject('')
setKey('')
;
$account = new Account($client);
$result = $account->getSecurity();