/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/Workflow/Metadata/InMemoryMetadataStore.php
50 строк
1 KB
Christian Flothmann
use constructor property promotion
06 июн 2024, 00:29
06 июн 2024, 00:29
f184ada
Код
Авторство
О чём код?
<?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\Workflow\Metadata; use Symfony\Component\Workflow\Transition; /** * @author Grégoire Pineau <lyrixx@lyrixx.info> */ final class InMemoryMetadataStore implements MetadataStoreInterface { use GetMetadataTrait; private \SplObjectStorage $transitionsMetadata; /** * @param \SplObjectStorage<Transition, array>|null $transitionsMetadata */ public function __construct( private array $workflowMetadata = [], private array $placesMetadata = [], ?\SplObjectStorage $transitionsMetadata = null, ) { $this->transitionsMetadata = $transitionsMetadata ?? new \SplObjectStorage(); } public function getWorkflowMetadata(): array { return $this->workflowMetadata; } public function getPlaceMetadata(string $place): array { return $this->placesMetadata[$place] ?? []; } public function getTransitionMetadata(Transition $transition): array { return $this->transitionsMetadata[$transition] ?? []; } }