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.
2 parents c4b9133 + fa5eaf9 commit 851e5f0Copy full SHA for 851e5f0
reference/formats/expression_language.rst
@@ -162,7 +162,7 @@ This also works with class constants::
162
}
163
164
var_dump($expressionLanguage->evaluate(
165
- 'constant("App\\\SomeNamespace\\\Foo::API_ENDPOINT")'
+ 'constant("App\\\\SomeNamespace\\\\Foo::API_ENDPOINT")'
166
));
167
168
This will print out ``/api``.
@@ -180,7 +180,7 @@ This function will return the case of an enumeration::
180
181
182
var_dump(App\Enum\Foo::Bar === $expressionLanguage->evaluate(
183
- 'enum("App\\\SomeNamespace\\\Foo::Bar")'
+ 'enum("App\\\\SomeNamespace\\\\Foo::Bar")'
184
185
186
This will print out ``true``.
0 commit comments