1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 18:00:05 +08:00
SpaceVim/bundle/phpcomplete.vim-vim7/tests/fixtures/GetClassName/completion_in_function_insides.php

28 lines
301 B
PHP

<?php
/**
* @return DateTime
*/
function dt() {
}
function baz() {
$d = dt();
$d->
}
class Foo {
/**
* @return DateTime
*/
public function makeDateTime() {
$d = dt();
$d->
}
public function __construct() {
$d = $this->makeDateTime();
$d->
}
}