/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/JsonStreamer/DataModel/Read/BackedEnumNode.php
41 строка
881 B
Mathias Arlaud
[JsonStreamer] Rename the component
26 фев 2025, 14:49
Не верифицирован
26 фев 2025, 14:49
924a01d
Код
Авторство
О чём код?
<?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\JsonStreamer\DataModel\Read; use Symfony\Component\TypeInfo\Type\BackedEnumType; /** * Represents a backed enum in the data model graph representation. * * Backed enums are leaves in the data model tree. * * @author Mathias Arlaud <mathias.arlaud@gmail.com> * * @internal */ final class BackedEnumNode implements DataModelNodeInterface { public function __construct( public BackedEnumType $type, ) { } public function getIdentifier(): string { return (string) $this->type; } public function getType(): BackedEnumType { return $this->type; } }