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

24 lines
279 B
PHP

<?php
class Foo {
public function bar() {
// search from here
}
}
// leading whitespace intentional
final class Foo2 {
function bar2() {
// search from here
}
}
// no whitespace before {
class Foo3{
function bar2() {
// search from here
}
}