// test: partially completed static method with existing brackets
// feature: completion
// Adapted from phpactor WorseClassMemberCompletorTest 'Partially completed static method with brackets'
// expect: bbb(
---
<?php
class Foobar
{
public function aaa()
{
self::bb<>();
}
public static function bbb() {}
public static function ccc() {}
}