/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/RateLimiter/RateLimiterFactoryInterface.php
23 строки
543 B
Alexandre Daubois
[RateLimiter] Add `RateLimiterFactoryInterface`
18 янв 2025, 12:25
18 янв 2025, 12:25
619c0eb
Код
Авторство
О чём код?
<?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\RateLimiter; /** * @author Alexandre Daubois <alex.daubois@gmail.com> */ interface RateLimiterFactoryInterface { /** * @param string|null $key an optional key used to identify the limiter */ public function create(?string $key = null): LimiterInterface; }