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 45ad3bf commit 86a10b4Copy full SHA for 86a10b4
reference/formats/expression_language.rst
@@ -178,7 +178,7 @@ This also works with class constants::
178
}
179
180
var_dump($expressionLanguage->evaluate(
181
- 'constant("App\\\SomeNamespace\\\Foo::API_ENDPOINT")'
+ 'constant("App\\\\SomeNamespace\\\\Foo::API_ENDPOINT")'
182
));
183
184
This will print out ``/api``.
@@ -196,7 +196,7 @@ This function will return the case of an enumeration::
196
197
198
var_dump(App\Enum\Foo::Bar === $expressionLanguage->evaluate(
199
- 'enum("App\\\SomeNamespace\\\Foo::Bar")'
+ 'enum("App\\\\SomeNamespace\\\\Foo::Bar")'
200
201
202
This will print out ``true``.
0 commit comments