From 12a61feed4e9bb547d835af77341e8e2d12e3f0d Mon Sep 17 00:00:00 2001 From: Bishwajeet Parhi Date: Mon, 14 Aug 2023 14:03:30 +0530 Subject: [PATCH] chore: add PlatformType --- src/Appwrite/Specification/Format.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/Appwrite/Specification/Format.php b/src/Appwrite/Specification/Format.php index d32180fa27..c2317c1153 100644 --- a/src/Appwrite/Specification/Format.php +++ b/src/Appwrite/Specification/Format.php @@ -166,6 +166,16 @@ abstract class Format } } break; + case 'projects': + switch ($method) { + case 'createPlatform': + switch ($param) { + case 'type': + return 'PlatformType'; + } + break; + } + break; } return null; }