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.
toLowerCamelCase
swift
dart
1 parent 2b094cc commit 725f05fCopy full SHA for 725f05f
src/SDK/Language/Dart.php
@@ -507,7 +507,7 @@ public function getFilters(): array
507
return implode("\n", $value);
508
}, ['is_safe' => ['html']]),
509
new TwigFilter('caseEnumKey', function (string $value) {
510
- return $this->toCamelCase($value);
+ return $this->toLowerCamelCase($value);
511
}),
512
];
513
}
src/SDK/Language/Swift.php
@@ -471,7 +471,7 @@ public function getFilters(): array
471
if (isset($this->getIdentifierOverrides()[$value])) {
472
$value = $this->getIdentifierOverrides()[$value];
473
474
475
476
477
0 commit comments