* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\ExpressionLanguage; /** * Represents an expression. * * @author Fabien Potencier */ class Expression { public function __construct( protected string $expression, ) { } /** * Gets the expression. */ public function __toString(): string { return $this->expression; } }