├── .github └── workflows │ └── code_analysis.yaml ├── .gitignore ├── README.md ├── bin └── dump-nodes.php ├── composer.json ├── ecs.php ├── phpstan.neon ├── phpunit.xml ├── rector.php ├── snippet ├── alias.php ├── array.php ├── array_dim_fetch.php ├── array_item.php ├── assign.php ├── assign_op │ ├── assign_op_coalesce.php │ └── assign_op_concat.php ├── assign_property_fetch.php ├── binary_op │ ├── binary_op_boolean_and.php │ ├── binary_op_coalesce.php │ ├── binary_op_concat.php │ ├── binary_op_equal.php │ ├── binary_op_identical.php │ ├── binary_op_minus.php │ ├── binary_op_not_equal.php │ ├── binary_op_not_identical.php │ └── binary_op_spaceship.php ├── block.php ├── boolean_not.php ├── cast_array.php ├── cast_bool.php ├── cast_int.php ├── cast_string.php ├── class.php ├── class_const.php ├── class_const_fetch.php ├── class_final.php ├── class_method.php ├── class_method_with_param_and_return_type.php ├── class_method_with_stmts.php ├── class_with_property.php ├── closure_use.php ├── const.php ├── const_fetch.php ├── const_stmt.php ├── declare.php ├── do.php ├── echo.php ├── else_if.php ├── empty.php ├── encapsed.php ├── eval.php ├── final_class_with_parent_class.php ├── float_.php ├── foreach.php ├── fullyqualified_name.php ├── func_call.php ├── function.php ├── if.php ├── include.php ├── inline_html.php ├── instance_of.php ├── int_.php ├── interface.php ├── isset.php ├── label.php ├── list.php ├── magic_property.php ├── method_call.php ├── method_call_fluent.php ├── method_call_on_property.php ├── method_call_with_args.php ├── name.php ├── new_anonymous_class.php ├── new_class.php ├── nullable_type.php ├── param.php ├── php_74 │ ├── arrow_function.php │ └── property_typed.php ├── php_80 │ ├── match.php │ ├── match_arm.php │ ├── null_safe_method_call.php │ └── null_safe_property_fetch.php ├── php_84 │ └── property_hook.php ├── property.php ├── property_double.php ├── property_fetch.php ├── require_once.php ├── static.php ├── static_call.php ├── static_property_fetch.php ├── static_var.php ├── string.php ├── switch.php ├── ternary.php ├── throw_expr.php ├── throw_stmt.php ├── trait.php ├── trait_use.php ├── try_catch.php ├── union_type.php ├── unset.php ├── use.php ├── variable.php └── while.php ├── src ├── Finder │ └── PhpFilesFinder.php ├── NodeCodeSampleProvider.php ├── NodeInfosFactory.php ├── Printer │ └── MarkdownNodeInfosPrinter.php ├── Sorter │ └── NodeInfoSorter.php └── ValueObject │ ├── NodeCodeSample.php │ └── NodeInfo.php └── tests └── NodeInfosFactoryTest.php /.github/workflows/code_analysis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/.github/workflows/code_analysis.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | /vendor 3 | 4 | .phpunit.cache -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/README.md -------------------------------------------------------------------------------- /bin/dump-nodes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/bin/dump-nodes.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/composer.json -------------------------------------------------------------------------------- /ecs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/ecs.php -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/phpunit.xml -------------------------------------------------------------------------------- /rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/rector.php -------------------------------------------------------------------------------- /snippet/alias.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/alias.php -------------------------------------------------------------------------------- /snippet/array.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/array.php -------------------------------------------------------------------------------- /snippet/array_dim_fetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/array_dim_fetch.php -------------------------------------------------------------------------------- /snippet/array_item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/array_item.php -------------------------------------------------------------------------------- /snippet/assign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/assign.php -------------------------------------------------------------------------------- /snippet/assign_op/assign_op_coalesce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/assign_op/assign_op_coalesce.php -------------------------------------------------------------------------------- /snippet/assign_op/assign_op_concat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/assign_op/assign_op_concat.php -------------------------------------------------------------------------------- /snippet/assign_property_fetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/assign_property_fetch.php -------------------------------------------------------------------------------- /snippet/binary_op/binary_op_boolean_and.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/binary_op/binary_op_boolean_and.php -------------------------------------------------------------------------------- /snippet/binary_op/binary_op_coalesce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/binary_op/binary_op_coalesce.php -------------------------------------------------------------------------------- /snippet/binary_op/binary_op_concat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/binary_op/binary_op_concat.php -------------------------------------------------------------------------------- /snippet/binary_op/binary_op_equal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/binary_op/binary_op_equal.php -------------------------------------------------------------------------------- /snippet/binary_op/binary_op_identical.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/binary_op/binary_op_identical.php -------------------------------------------------------------------------------- /snippet/binary_op/binary_op_minus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/binary_op/binary_op_minus.php -------------------------------------------------------------------------------- /snippet/binary_op/binary_op_not_equal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/binary_op/binary_op_not_equal.php -------------------------------------------------------------------------------- /snippet/binary_op/binary_op_not_identical.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/binary_op/binary_op_not_identical.php -------------------------------------------------------------------------------- /snippet/binary_op/binary_op_spaceship.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/binary_op/binary_op_spaceship.php -------------------------------------------------------------------------------- /snippet/block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/block.php -------------------------------------------------------------------------------- /snippet/boolean_not.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/boolean_not.php -------------------------------------------------------------------------------- /snippet/cast_array.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/cast_array.php -------------------------------------------------------------------------------- /snippet/cast_bool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/cast_bool.php -------------------------------------------------------------------------------- /snippet/cast_int.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/cast_int.php -------------------------------------------------------------------------------- /snippet/cast_string.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/cast_string.php -------------------------------------------------------------------------------- /snippet/class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/class.php -------------------------------------------------------------------------------- /snippet/class_const.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/class_const.php -------------------------------------------------------------------------------- /snippet/class_const_fetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/class_const_fetch.php -------------------------------------------------------------------------------- /snippet/class_final.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/class_final.php -------------------------------------------------------------------------------- /snippet/class_method.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/class_method.php -------------------------------------------------------------------------------- /snippet/class_method_with_param_and_return_type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/class_method_with_param_and_return_type.php -------------------------------------------------------------------------------- /snippet/class_method_with_stmts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/class_method_with_stmts.php -------------------------------------------------------------------------------- /snippet/class_with_property.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/class_with_property.php -------------------------------------------------------------------------------- /snippet/closure_use.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/closure_use.php -------------------------------------------------------------------------------- /snippet/const.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/const.php -------------------------------------------------------------------------------- /snippet/const_fetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/const_fetch.php -------------------------------------------------------------------------------- /snippet/const_stmt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/const_stmt.php -------------------------------------------------------------------------------- /snippet/declare.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/declare.php -------------------------------------------------------------------------------- /snippet/do.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/do.php -------------------------------------------------------------------------------- /snippet/echo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/echo.php -------------------------------------------------------------------------------- /snippet/else_if.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/else_if.php -------------------------------------------------------------------------------- /snippet/empty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/empty.php -------------------------------------------------------------------------------- /snippet/encapsed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/encapsed.php -------------------------------------------------------------------------------- /snippet/eval.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/eval.php -------------------------------------------------------------------------------- /snippet/final_class_with_parent_class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/final_class_with_parent_class.php -------------------------------------------------------------------------------- /snippet/float_.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/float_.php -------------------------------------------------------------------------------- /snippet/foreach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/foreach.php -------------------------------------------------------------------------------- /snippet/fullyqualified_name.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/fullyqualified_name.php -------------------------------------------------------------------------------- /snippet/func_call.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/func_call.php -------------------------------------------------------------------------------- /snippet/function.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/function.php -------------------------------------------------------------------------------- /snippet/if.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/if.php -------------------------------------------------------------------------------- /snippet/include.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/include.php -------------------------------------------------------------------------------- /snippet/inline_html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/inline_html.php -------------------------------------------------------------------------------- /snippet/instance_of.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/instance_of.php -------------------------------------------------------------------------------- /snippet/int_.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/int_.php -------------------------------------------------------------------------------- /snippet/interface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/interface.php -------------------------------------------------------------------------------- /snippet/isset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/isset.php -------------------------------------------------------------------------------- /snippet/label.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/label.php -------------------------------------------------------------------------------- /snippet/list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/list.php -------------------------------------------------------------------------------- /snippet/magic_property.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/magic_property.php -------------------------------------------------------------------------------- /snippet/method_call.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/method_call.php -------------------------------------------------------------------------------- /snippet/method_call_fluent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/method_call_fluent.php -------------------------------------------------------------------------------- /snippet/method_call_on_property.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/method_call_on_property.php -------------------------------------------------------------------------------- /snippet/method_call_with_args.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/method_call_with_args.php -------------------------------------------------------------------------------- /snippet/name.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/name.php -------------------------------------------------------------------------------- /snippet/new_anonymous_class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/new_anonymous_class.php -------------------------------------------------------------------------------- /snippet/new_class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/new_class.php -------------------------------------------------------------------------------- /snippet/nullable_type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/nullable_type.php -------------------------------------------------------------------------------- /snippet/param.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/param.php -------------------------------------------------------------------------------- /snippet/php_74/arrow_function.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/php_74/arrow_function.php -------------------------------------------------------------------------------- /snippet/php_74/property_typed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/php_74/property_typed.php -------------------------------------------------------------------------------- /snippet/php_80/match.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/php_80/match.php -------------------------------------------------------------------------------- /snippet/php_80/match_arm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/php_80/match_arm.php -------------------------------------------------------------------------------- /snippet/php_80/null_safe_method_call.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/php_80/null_safe_method_call.php -------------------------------------------------------------------------------- /snippet/php_80/null_safe_property_fetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/php_80/null_safe_property_fetch.php -------------------------------------------------------------------------------- /snippet/php_84/property_hook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/php_84/property_hook.php -------------------------------------------------------------------------------- /snippet/property.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/property.php -------------------------------------------------------------------------------- /snippet/property_double.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/property_double.php -------------------------------------------------------------------------------- /snippet/property_fetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/property_fetch.php -------------------------------------------------------------------------------- /snippet/require_once.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/require_once.php -------------------------------------------------------------------------------- /snippet/static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/static.php -------------------------------------------------------------------------------- /snippet/static_call.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/static_call.php -------------------------------------------------------------------------------- /snippet/static_property_fetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/static_property_fetch.php -------------------------------------------------------------------------------- /snippet/static_var.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/static_var.php -------------------------------------------------------------------------------- /snippet/string.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/string.php -------------------------------------------------------------------------------- /snippet/switch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/switch.php -------------------------------------------------------------------------------- /snippet/ternary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/ternary.php -------------------------------------------------------------------------------- /snippet/throw_expr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/throw_expr.php -------------------------------------------------------------------------------- /snippet/throw_stmt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/throw_stmt.php -------------------------------------------------------------------------------- /snippet/trait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/trait.php -------------------------------------------------------------------------------- /snippet/trait_use.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/trait_use.php -------------------------------------------------------------------------------- /snippet/try_catch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/try_catch.php -------------------------------------------------------------------------------- /snippet/union_type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/union_type.php -------------------------------------------------------------------------------- /snippet/unset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/unset.php -------------------------------------------------------------------------------- /snippet/use.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/use.php -------------------------------------------------------------------------------- /snippet/variable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/variable.php -------------------------------------------------------------------------------- /snippet/while.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/snippet/while.php -------------------------------------------------------------------------------- /src/Finder/PhpFilesFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/src/Finder/PhpFilesFinder.php -------------------------------------------------------------------------------- /src/NodeCodeSampleProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/src/NodeCodeSampleProvider.php -------------------------------------------------------------------------------- /src/NodeInfosFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/src/NodeInfosFactory.php -------------------------------------------------------------------------------- /src/Printer/MarkdownNodeInfosPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/src/Printer/MarkdownNodeInfosPrinter.php -------------------------------------------------------------------------------- /src/Sorter/NodeInfoSorter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/src/Sorter/NodeInfoSorter.php -------------------------------------------------------------------------------- /src/ValueObject/NodeCodeSample.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/src/ValueObject/NodeCodeSample.php -------------------------------------------------------------------------------- /src/ValueObject/NodeInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/src/ValueObject/NodeInfo.php -------------------------------------------------------------------------------- /tests/NodeInfosFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rectorphp/php-parser-nodes-docs/HEAD/tests/NodeInfosFactoryTest.php --------------------------------------------------------------------------------