From c861d3c52ff9fbdbc2c959fa496842fa59a30cb3 Mon Sep 17 00:00:00 2001 From: Christy Jacob Date: Mon, 7 Feb 2022 01:42:03 +0400 Subject: [PATCH] feat: adjust docs --- src/Appwrite/Extend/Exception.php | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/src/Appwrite/Extend/Exception.php b/src/Appwrite/Extend/Exception.php index e4709a31d6..bac2744c33 100644 --- a/src/Appwrite/Extend/Exception.php +++ b/src/Appwrite/Extend/Exception.php @@ -14,14 +14,25 @@ class Exception extends \Exception * * Appwrite has the follwing entities: * - Users - * - Projects - * - Sessions + * - OAuth * - Teams * - Memberships - * - Files + * - Avatars + * - Storage * - Functions * - Deployments * - Executions + * - Collections + * - Documents + * - Attributes + * - Indexes + * - Queries + * - Projects + * - Webhooks + * - Keys + * - Platform + * - Domain + * - General */ /** Users */ @@ -89,8 +100,8 @@ class Exception extends \Exception const COLLECTION_NOT_FOUND = 'collection_not_found'; const COLLECTION_ALREADY_EXISTS = 'collection_already_exists'; const COLLECTION_LIMIT_EXCEEDED = 'collection_limit_exceeded'; - /** Documents */ + /** Documents */ const DOCUMENT_NOT_FOUND = 'document_not_found'; const DOCUMENT_INVALID_STRUCTURE = 'document_invalid_structure'; const DOCUMENT_MISSING_PAYLOAD = 'document_missing_payload';