/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/ErrorHandler/Tests/Fixtures/SubClassWithAnnotatedParameters.php
32 строки
582 B
Yonel Ceruto
Add a new ErrorHandler component (mirror of the Debug component)
18 июл 2019, 10:54
18 июл 2019, 10:54
b1b6e80
Код
Авторство
О чём код?
<?php namespace Symfony\Component\ErrorHandler\Tests\Fixtures; class SubClassWithAnnotatedParameters extends ClassWithAnnotatedParameters implements InterfaceWithAnnotatedParameters { use TraitWithAnnotatedParameters; public function fooMethod(string $foo) { } public function barMethod($bar = null) { } public function quzMethod() { } public function whereAmI() { } /** * @param $defined * @param Type\Does\Not\Matter $definedCallable */ public function iAmHere() { } }