/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/Workflow/Marking.php
107 строк
3 KB
Nicolas Grekas
Merge branch '7.4' into 8.0
02 окт 2025, 11:08
02 окт 2025, 11:08
9246193
Код
Авторство
О чём код?
<?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; /** * Marking contains the place of every tokens. * * @author Grégoire Pineau <lyrixx@lyrixx.info> */ class Marking { /** * @var array<string, int<0,max>> Keys are the place names and values are the number of tokens in that place */ private array $places = []; private ?array $context = null; /** * @param int[] $representation Keys are the place name and values should be superior or equals to 1 */ public function __construct(array $representation = []) { foreach ($representation as $place => $nbToken) { $this->mark($place, $nbToken); } } /** * @psalm-param int<1, max> $nbToken */ public function mark(string $place, int $nbToken = 1): void { if ($nbToken < 1) { throw new \InvalidArgumentException(\sprintf('The number of tokens must be greater than 0, "%s" given.', $nbToken)); } $this->places[$place] ??= 0; $this->places[$place] += $nbToken; } /** * @psalm-param int<1, max> $nbToken */ public function unmark(string $place, int $nbToken = 1): void { if ($nbToken < 1) { throw new \InvalidArgumentException(\sprintf('The number of tokens must be greater than 0, "%s" given.', $nbToken)); } if (!$this->has($place)) { throw new \InvalidArgumentException(\sprintf('The place "%s" is not marked.', $place)); } $tokenCount = $this->places[$place] - $nbToken; if (0 > $tokenCount) { throw new \InvalidArgumentException(\sprintf('The place "%s" could not contain a negative token number: "%s" (initial) - "%s" (nbToken) = "%s".', $place, $this->places[$place], $nbToken, $tokenCount)); } if (0 === $tokenCount) { unset($this->places[$place]); } else { $this->places[$place] = $tokenCount; } } public function has(string $place): bool { return isset($this->places[$place]); } public function getTokenCount(string $place): int { return $this->places[$place] ?? 0; } public function getPlaces(): array { return $this->places; } /** * @internal */ public function setContext(array $context): void { $this->context = $context; } /** * Returns the context after the subject has transitioned. */ public function getContext(): ?array { return $this->context; } }