/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/ErrorHandler/Tests/Fixtures/ClassWithAnnotatedParameters.php
34 строки
588 B
Nicolas Grekas
Make more nullable types explicit
19 мар 2024, 13:19
19 мар 2024, 13:19
73d769e
Код
Авторство
О чём код?
<?php namespace Symfony\Component\ErrorHandler\Tests\Fixtures; class ClassWithAnnotatedParameters { /** * @param string $foo this is a foo parameter */ public function fooMethod(string $foo) { } /** * @param string $bar parameter not implemented yet */ public function barMethod(/* ?string $bar = null */) { } /** * @param Quz $quz parameter not implemented yet */ public function quzMethod(/* ?Quz $quz = null */) { } /** * @param true $yes */ public function isSymfony() { } }