mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-04 06:00:04 +08:00
15 lines
250 B
PHP
15 lines
250 B
PHP
<?php
|
|
/*
|
|
* testcase for when the class definition is not on the start of the line
|
|
* related to issue #19
|
|
*/
|
|
|
|
ABSTRACT class FooAbstract
|
|
{
|
|
public function foo() {
|
|
$this->
|
|
;
|
|
self::
|
|
}
|
|
}
|