/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/JsonStreamer/DataModel/Write/DataModelNodeInterface.php
32 строки
714 B
Mathias Arlaud
[JsonStreamer] Remove "nikic/php-parser" dependency
26 май 2025, 16:29
Не верифицирован
26 май 2025, 16:29
e5930b3
Код
Авторство
О чём код?
<?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\Write; use Symfony\Component\TypeInfo\Type; /** * Represents a node in the stream writing data model graph representation. * * @author Mathias Arlaud <mathias.arlaud@gmail.com> * * @internal */ interface DataModelNodeInterface { public function getIdentifier(): string; public function getType(): Type; public function getAccessor(): string; public function withAccessor(string $accessor): self; }