/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/Cache/Exception/BadMethodCallException.php
25 строк
697 B
Nicolas Grekas
[Cache] Enable namespace-based invalidation by prefixing keys with backend-native namespace separators
13 мар 2025, 18:25
13 мар 2025, 18:25
81a8ceb
Код
Авторство
О чём код?
<?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\Cache\Exception; use Psr\Cache\CacheException as Psr6CacheInterface; use Psr\SimpleCache\CacheException as SimpleCacheInterface; if (interface_exists(SimpleCacheInterface::class)) { class BadMethodCallException extends \BadMethodCallException implements Psr6CacheInterface, SimpleCacheInterface { } } else { class BadMethodCallException extends \BadMethodCallException implements Psr6CacheInterface { } }