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.
37 lines
468 B
37 lines
468 B
4 years ago
|
<?php
|
||
|
/**
|
||
|
* Some comment
|
||
|
*/
|
||
|
class Foo{function foo(){}
|
||
|
|
||
|
/**
|
||
|
* @param Baz $baz
|
||
|
*/
|
||
|
public function bar(Baz $baz)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param Foobar $foobar
|
||
|
*/
|
||
|
static public function foobar(Foobar $foobar)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public function barfoo(Barfoo $barfoo)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* This docblock does not belong to the baz function
|
||
|
*/
|
||
|
|
||
|
public function baz()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public function blaz($x, $y)
|
||
|
{
|
||
|
}
|
||
|
}
|