/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/Semaphore/Exception/UnserializableKeyException.php
24 строки
696 B
Nicolas Grekas
[Semaphore] Various fixes and hardenings
18 май 2026, 20:26
18 май 2026, 20:26
b6778ee
Код
Авторство
О чём код?
<?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\Semaphore\Exception; /** * Thrown when a {@see \Symfony\Component\Semaphore\Key} that has been flagged * as unserializable (typically by a store that attached non-portable * per-process state, such as live lock instances) is passed to PHP's * `serialize()` or to a normalizer. * * @author Paul Clegg <hello@clegginabox.co.uk> */ class UnserializableKeyException extends \RuntimeException implements ExceptionInterface { }