radarrplexorganizrnginxsonarrdashboardserverhomepagesabnzbdheimdallembycouchpotatonzbgetbookmarkapplication-dashboardmuximuxlandingpagestartpagelandinghtpc
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
579 B
34 lines
579 B
<?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()
|
|
{
|
|
}
|
|
}
|
|
|