mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-04 05:50:06 +08:00
24 lines
279 B
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
|
|
}
|
|
}
|