This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/ExpressionLanguage
2020-10-24 12:57:07 +02:00
..
Node fix passing arguments to call_user_func_array() on PHP 8 2020-08-21 16:15:51 +02:00
ParserCache Enable "native_constant_invocation" CS rule 2020-09-02 18:06:40 +02:00
Resources/bin [ExpressionLanguage] Fixed collisions of character operators with object properties 2020-02-23 09:43:25 +01:00
Tests Enable "native_constant_invocation" CS rule 2020-09-02 18:06:40 +02:00
.gitignore
CHANGELOG.md [ExpressionLanguage] added ExpressionFunction and ExpressionFunctionProviderInterface 2014-09-25 19:08:38 +02:00
Compiler.php Enable "native_constant_invocation" CS rule 2020-09-02 18:06:40 +02:00
composer.json Remove branch-version (keep them for contracts only) 2020-10-24 12:57:07 +02:00
Expression.php removed useless PHPDoc 2017-09-30 07:00:23 -07:00
ExpressionFunction.php Merge branch '2.8' into 3.4 2018-07-26 10:45:46 +02:00
ExpressionFunctionProviderInterface.php [ExpressionLanguage] added ExpressionFunction and ExpressionFunctionProviderInterface 2014-09-25 19:08:38 +02:00
ExpressionLanguage.php Enable "native_constant_invocation" CS rule 2020-09-02 18:06:40 +02:00
Lexer.php Enable "native_constant_invocation" CS rule 2020-09-02 18:06:40 +02:00
LICENSE Update year in license files 2020-01-01 12:03:25 +01:00
ParsedExpression.php removed useless PHPDoc 2017-09-30 07:00:23 -07:00
Parser.php Add missing dots at the end of exception messages 2020-03-15 10:38:08 +01:00
phpunit.xml.dist Bump phpunit XSD version to 5.2 2018-11-11 12:18:13 +01:00
README.md [2.7] update readme files for new components 2016-03-07 12:06:07 +01:00
SerializedParsedExpression.php removed useless PHPDoc 2017-09-30 07:00:23 -07:00
SyntaxError.php Enable "native_constant_invocation" CS rule 2020-09-02 18:06:40 +02:00
Token.php Fix type annotation 2020-10-04 12:25:24 +02:00
TokenStream.php Add missing dots at the end of exception messages 2020-03-15 10:38:08 +01:00

ExpressionLanguage Component

The ExpressionLanguage component provides an engine that can compile and evaluate expressions. An expression is a one-liner that returns a value (mostly, but not limited to, Booleans).

Resources