We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30f5595 commit 257481bCopy full SHA for 257481b
templates/cli/lib/type-generation/languages/php.js.twig
@@ -55,7 +55,7 @@ use Appwrite\\Models\\<%- toPascalCase(attribute.relatedCollection) %>;
55
<% if (attribute.format === 'enum') { -%>
56
enum <%- toPascalCase(attribute.key) %> {
57
<% for (const [index, element] of Object.entries(attribute.elements)) { -%>
58
- case <%- toUpperSnakeCase(element) %> = '<%- element %>';
+ case <%- toUpperSnakeCase(element) %> = "<%- element %>";
59
<% } -%>
60
}
61
0 commit comments