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.
35 lines
901 B
35 lines
901 B
6 years ago
|
<?php
|
||
|
|
||
|
namespace Symfony\Component\Debug\Tests\Fixtures;
|
||
|
|
||
|
/**
|
||
|
* @method string interfaceMethod()
|
||
|
* @method sameLineInterfaceMethod($arg)
|
||
|
* @method sameLineInterfaceMethodNoBraces
|
||
|
*
|
||
|
* Ignored
|
||
|
* @method
|
||
|
* @method
|
||
|
*
|
||
|
* Not ignored
|
||
|
* @method newLineInterfaceMethod() Some description!
|
||
|
* @method \stdClass newLineInterfaceMethodNoBraces Description
|
||
|
*
|
||
|
* Invalid
|
||
|
* @method unknownType invalidInterfaceMethod()
|
||
|
* @method unknownType|string invalidInterfaceMethodNoBraces
|
||
|
*
|
||
|
* Complex
|
||
|
* @method complexInterfaceMethod($arg, ...$args)
|
||
|
* @method string[]|int complexInterfaceMethodTyped($arg, int ...$args) Description ...
|
||
|
*
|
||
|
* Static
|
||
|
* @method static Foo&Bar staticMethod()
|
||
|
* @method static staticMethodNoBraces
|
||
|
* @method static \stdClass staticMethodTyped(int $arg) Description
|
||
|
* @method static \stdClass[] staticMethodTypedNoBraces
|
||
|
*/
|
||
|
interface VirtualInterface
|
||
|
{
|
||
|
}
|