/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/Runtime/Tests/frankenphp-function-mock.php
19 строк
414 B
Nicolas Grekas
CS fixes
13 апр 2026, 18:40
13 апр 2026, 18:40
bde244c
Код
Авторство
О чём код?
<?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. */ if (!function_exists('frankenphp_handle_request')) { function frankenphp_handle_request(callable $callable): bool { $callable(); return false; } }