Fix url to nodes-overview (#5695)

* Fix url to nodes-overview

* Update create_own_rule.md

* Update README.md
This commit is contained in:
Markus Staab 2021-02-28 10:36:32 +01:00 committed by GitHub
parent 599df0ab0e
commit 74a54f3bc4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -64,7 +64,7 @@ It supports all versions of PHP from 5.3 and major open-source projects:
- [Explore 660+ Rector Rules](/docs/rector_rules_overview.md)
- [How Does Rector Work?](/docs/how_it_works.md)
- [PHP Parser Nodes](https://github.com/rectorphp/php-parser-nodes-docs/blob/master/docs/nodes_overview.md)
- [PHP Parser Nodes](https://github.com/rectorphp/php-parser-nodes-docs/)
### Advanced

View File

@ -32,7 +32,7 @@ final class MyFirstRector extends AbstractRector
public function getNodeTypes(): array
{
// what node types are we looking for?
// pick any node from https://github.com/rectorphp/rector/blob/master/docs/nodes_overview.md
// pick any node from https://github.com/rectorphp/php-parser-nodes-docs/
return [MethodCall::class];
}