spacevim/bundle/phpcomplete.vim/tests/fixtures/CompleteUnknownClass/foo_properties.class.php

9 lines
140 B
PHP
Raw Normal View History

2024-08-21 14:17:26 +08:00
<?php
class FooPropertiesClass {
var $property1 = 'foo';
public $property2 = 'bar';
public static $static_property = 'bar';
}