/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/JsonStreamer/DataModel/Read/ObjectNode.php
63 строки
1 KB
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\Read; use Symfony\Component\TypeInfo\Type\ObjectType; use Symfony\Component\TypeInfo\Type\UnionType; /** * Represents an object in the data model graph representation. * * @author Mathias Arlaud <mathias.arlaud@gmail.com> * * @internal */ final class ObjectNode implements DataModelNodeInterface { /** * @param array<string, array{name: string, value: DataModelNodeInterface, accessor: callable(string): string}> $properties */ public function __construct( private ObjectType $type, private array $properties, private bool $mock = false, ) { } public static function createMock(ObjectType|UnionType $type): self { return new self($type, [], true); } public function getIdentifier(): string { return (string) $this->type; } public function getType(): ObjectType { return $this->type; } /** * @return array<string, array{name: string, value: DataModelNodeInterface, accessor: callable(string): string}> */ public function getProperties(): array { return $this->properties; } public function isMock(): bool { return $this->mock; } }