mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 19:50:04 +08:00
15 lines
227 B
PHP
Vendored
15 lines
227 B
PHP
Vendored
<?php
|
|
/*
|
|
* testcase for when the class keyword is not on the start of the line
|
|
* related to issue #19
|
|
*/
|
|
clASs FooClass
|
|
{
|
|
|
|
public function bar() {
|
|
$this->
|
|
self::
|
|
}
|
|
}
|
|
|