From adc1e3f2aff472cf1007301715e2d2907d5d9ef0 Mon Sep 17 00:00:00 2001 From: Damodar Lohani Date: Thu, 18 Nov 2021 18:32:54 +0545 Subject: [PATCH] missing semicolon --- src/Appwrite/Specification/Format/Swagger2.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Appwrite/Specification/Format/Swagger2.php b/src/Appwrite/Specification/Format/Swagger2.php index 0155b1a683..ab45ae401c 100644 --- a/src/Appwrite/Specification/Format/Swagger2.php +++ b/src/Appwrite/Specification/Format/Swagger2.php @@ -329,7 +329,7 @@ class Swagger2 extends Format $node['items'] = [ 'type' => 'string', ]; - $node['x-example'] = '["role:all"]' + $node['x-example'] = '["role:all"]'; break; case 'Appwrite\Auth\Validator\Password': $node['type'] = $validator->getType();