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 3e736b7 commit 112022aCopy full SHA for 112022a
src/SDK/Language/DotNet.php
@@ -499,7 +499,7 @@ public function getFunctions(): array
499
$name = $property['name'];
500
$name = \str_replace('$', '', $name);
501
$name = $this->toPascalCase($name);
502
- if (\in_array(\strtolower($name), $this->getKeywords())) {
+ if (\in_array($name, $this->getKeywords())) {
503
$name = '@' . $name;
504
}
505
return $name;
0 commit comments