1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-03-12 17:55:41 +08:00

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