1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 19:50:04 +08:00
SpaceVim/bundle/phpcomplete.vim/tests/fixtures/CompleteUserClass/commented_foo.class.php

21 lines
280 B
PHP
Raw Normal View History

<?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 = '') {
}
}