mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 22:40:05 +08:00
15 lines
227 B
PHP
15 lines
227 B
PHP
|
<?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::
|
||
|
}
|
||
|
}
|
||
|
|