Files
faveo/vendor/symfony/debug/Tests/Fixtures/TraitWithAnnotatedParameters.php
2019-04-19 14:37:37 +05:30

14 lines
211 B
PHP

<?php
namespace Symfony\Component\Debug\Tests\Fixtures;
trait TraitWithAnnotatedParameters
{
/**
* `@param` annotations in traits are not parsed.
*/
public function isSymfony()
{
}
}