spacevim/bundle/phpcomplete.vim/tests/fixtures/GetClassContents/same_file_class.php

13 lines
122 B
PHP
Raw Normal View History

2024-08-21 14:17:26 +08:00
<?php
trait FooTrait { }
class SomeTraitedClass {
use FooTrait;
}
class ExtendsNonExistsing extends NoSuchClass {
}