/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/ExpressionLanguage/Expression.php
33 строки
614 B
Oskar Stark
[Dotenv][ErrorHandler][EventDispatcher] Use CPP
08 янв 2024, 15:57
08 янв 2024, 15:57
5c7ecdc
Код
Авторство
О чём код?
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * 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 <fabien@symfony.com> */ class Expression { public function __construct( protected string $expression, ) { } /** * Gets the expression. */ public function __toString(): string { return $this->expression; } }