mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 20:00:06 +08:00
15 lines
250 B
PHP
Vendored
15 lines
250 B
PHP
Vendored
<?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::
|
|
}
|
|
}
|