mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 22:40:05 +08:00
21 lines
280 B
PHP
21 lines
280 B
PHP
<?php
|
|
|
|
/**
|
|
* Foo
|
|
*
|
|
* @property DateTime $commented_from_docblock
|
|
*/
|
|
class Foo {
|
|
|
|
/**
|
|
* @var Foo
|
|
*/
|
|
public $commented_property;
|
|
|
|
/**
|
|
* @return string description of return
|
|
*/
|
|
public function commented_method($foo, $bar, $baz = '') {
|
|
}
|
|
}
|