SYMBOL INDEX (114 symbols across 36 files) FILE: script/extract_functions.php function get_module (line 109) | function get_module(array $function, array $patterns): ?string FILE: tests/7.4/typed-property.php class Typed (line 3) | class Typed method __construct (line 9) | public function __construct($var = null) method print (line 14) | public function print() FILE: tests/8.0/attribute/class.php class Klass (line 5) | #[ExampleAttribute] method f1 (line 9) | #[ExampleAttribute] method foo (line 12) | #[WithoutArgument] method bar (line 17) | #[WithoutArgument] #[SingleArgument(0)] #[FewArguments('Hello', 'World')] method buz (line 20) | #[Attr2("foo"), Attr2("bar")] FILE: tests/8.0/attribute/function.php function f1 (line 3) | #[ExampleAttribute] function foo (line 6) | #[WithoutArgument] function bar (line 11) | #[WithoutArgument]#[SingleArgument(0)]#[FewArguments('Hello', 'World')] FILE: tests/8.0/attribute/function2.php function f (line 3) | #[ FILE: tests/8.1/enum.php method fromLength (line 9) | public static function fromLength(int $cm) FILE: tests/8.1/readonly.php class Foo (line 3) | class Foo method __construct (line 8) | public function __construct( FILE: tests/8.4/property-hooks.php class Person (line 3) | class Person FILE: tests/indent/issue-227.php function my_func (line 9) | function my_func() { FILE: tests/issue-100.php class Foo (line 21) | class Foo FILE: tests/issue-124.php function bar (line 17) | function bar() FILE: tests/issue-129.php class MyClass (line 11) | class MyClass method foo (line 13) | public final function foo() FILE: tests/issue-135.php function foo (line 23) | function foo() { class Test (line 54) | class Test { method test (line 55) | public function test() { FILE: tests/issue-136.php class User (line 19) | class User method getName (line 24) | public function getName() method getID (line 29) | public function getID() FILE: tests/issue-145.php function bar (line 10) | function bar() { FILE: tests/issue-178.php class Test (line 13) | class Test { FILE: tests/issue-184.php function test (line 13) | function test() { FILE: tests/issue-19.php class Whatever (line 21) | class Whatever method __construct (line 23) | public function __construct() method something (line 30) | public function something() function something (line 44) | function something() FILE: tests/issue-200.php class Foo (line 11) | class Foo method test (line 13) | public function test() FILE: tests/issue-237.php function foo (line 12) | function foo() { FILE: tests/issue-253.php class A (line 9) | class A { method a (line 10) | function a($x = null) { method b (line 16) | function b($x = null) { FILE: tests/issue-310.php function a (line 3) | function a() : string { FILE: tests/issue-333.php class Hello (line 12) | class Hello method __construct (line 24) | public function __construct( FILE: tests/issue-503.php function foo (line 2) | function foo () { FILE: tests/issue-53.php class Foo (line 14) | class Foo { method __construct (line 18) | public function __construct($bar) { method getBar (line 22) | public function getBar() { FILE: tests/issue-66-bracket-namespace.php class Connection (line 13) | class Connection { /* ... */ } function connect (line 14) | function connect() { /* ... */ } function myfun (line 18) | function myfun() { FILE: tests/issue-66-multi-namespace.php class Connection (line 13) | class Connection { /* ... */ } function connect (line 14) | function connect() { /* ... */ } class Connection (line 19) | class Connection { /* ... */ } function connect (line 20) | function connect() { /* ... */ } FILE: tests/issue-66-namespace.php class MyClass (line 15) | class MyClass {} function myfunction (line 16) | function myfunction() {} FILE: tests/issue-66-use-namespace.php class TheClass (line 17) | class TheClass { method __construct (line 18) | public function __construct() { FILE: tests/issue-66.php function inverse (line 13) | function inverse($x) { FILE: tests/issue-83.php class Test (line 11) | class Test method staticBeforeVisibility (line 13) | static public function staticBeforeVisibility() method staticAfterVisibility (line 18) | public static function staticAfterVisibility() FILE: tests/lang/doc-comment/annotation.php class User (line 10) | class User class Child (line 17) | class Child extends Parent_ FILE: tests/lang/doc-comment/comments.php class SampleClass (line 41) | final class SampleClass method __construct (line 51) | public function __construct($name) method test (line 70) | public function test() FILE: tests/lang/doc-comment/issue-8.php class Product (line 16) | class Product FILE: tests/namespace-block.php function hoge (line 27) | function hoge() // ###php-mode-test### ((indent c-basic-offset)) function fuga (line 32) | function fuga() :array // ###php-mode-test### ((indent c-basic-offset)) class Fizz (line 37) | class Fizz // ###php-mode-test### ((indent c-basic-offset)) method a (line 39) | static // ###php-mode-test### ((indent (* 2 c-basic-offset))) class Buzz (line 54) | class Buzz // ###php-mode-test### ((indent c-basic-offset)) method b (line 58) | function b // ###php-mode-test### ((indent (* 2 c-basic-offset))) FILE: tests/type-hints.php class SomeClass (line 3) | class SomeClass method none (line 5) | public function none($title): void method title (line 9) | public function title(string $title): string method nullableTitle (line 13) | public function nullableTitle(?string $title): ?string method number (line 17) | public function number(int $number): int method nullableNumber (line 21) | public function nullableNumber(?int $number): ?int method otherNumber (line 25) | public function otherNumber(float $number): float method nullableOtherNumber (line 29) | public function nullableOtherNumber(?float $number): ?float method flag (line 33) | public function flag(bool $flag): bool method nullableFlag (line 37) | public function nullableFlag(?bool $flag): ?bool method options (line 41) | public function options(array $options): array method nullableOptions (line 45) | public function nullableOptions(?array $options): ?array method object (line 49) | public function object(stdClass $object): stdClass method nullableObject (line 53) | public function nullableObject(?stdClass $object): ?stdClass method nsObject (line 57) | public function nsObject(\path\to\my\Object $object): \path\to\my\Object method nullableNsObject (line 61) | public function nullableNsObject(?\path\to\my\Object $object): ?\path\... method callable (line 65) | public function callable(callable $callable): callable method nullableCallable (line 69) | public function nullableCallable(?callable $callable): ?callable method someFunction (line 73) | public function someFunction( method getNone (line 84) | public function getNone( method getTitle (line 88) | public function getTitle( method getNullableTitle (line 92) | public function getNullableTitle( method getNumber (line 96) | public function getNumber( method getNullableNumber (line 100) | public function getNullableNumber( method getOtherNumber (line 104) | public function getOtherNumber( method getNullableOtherNumber (line 108) | public function getNullableOtherNumber( method getFlag (line 112) | public function getFlag( method getNullableFlag (line 116) | public function getNullableFlag( method getOptions (line 120) | public function getOptions( method getNullableOptions (line 124) | public function getNullableOptions( method getObject (line 128) | public function getObject( method getNullableObject (line 132) | public function getNullableObject( method getOtherObject (line 136) | abstract public function getOtherObject( method getOtherNullableObject (line 139) | abstract public function getOtherNullableObject( method getNsObject (line 142) | public function getNsObject( method getNullableNsObject (line 146) | public function getNullableNsObject( method getCallable (line 150) | public function getCallable( method getNullableCallable (line 154) | public function getNullableCallable( method neverReturn (line 158) | public function neverReturn(