tikiwiki/packages/tiki-pkg-mediaalchemyst/symfony/debug/Tests/Fixtures/ClassWithAnnotatedParameters.php
2023-11-20 20:52:04 +00:00

35 lines
579 B
PHP
Executable File

<?php
namespace Symfony\Component\Debug\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()
{
}
}