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

24 lines
279 B
PHP
Vendored

<?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
}
}