Skip to content

Commit

Permalink
Fix external patch path (#4677)
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasVotruba committed Aug 6, 2023
1 parent 2ffa009 commit 56195b3
Show file tree
Hide file tree
Showing 13 changed files with 17 additions and 17 deletions.
Expand Up @@ -16,7 +16,7 @@ about: Report errors and problems

## Minimal PHP Code Causing Issue

<!-- Reproduce the issue using https://getrector.org/demo/ and post the URL here. -->
<!-- Reproduce the issue using https://getrector.com/demo/ and post the URL here. -->

## Expected Behaviour

Expand Down
6 changes: 3 additions & 3 deletions build/target-repository/README.md
Expand Up @@ -72,7 +72,7 @@ vendor/bin/rector process src

## Documentation

* Find [full documentation here](https://getrector.org/documentation/).
* Find [full documentation here](https://getrector.com/documentation/).
* [Explore Rector Rules](/docs/rector_rules_overview.md)

<br>
Expand Down Expand Up @@ -106,9 +106,9 @@ Among there projects belong:

## Hire us to get Job Done :muscle:

Rector is a tool that [we develop](https://getrector.org/) and share for free, so anyone can automate their refactoring. But not everyone has dozens of hours to understand complexity of abstract-syntax-tree in their own time. **That's why we provide commercial support - to save your time**.
Rector is a tool that [we develop](https://getrector.com/) and share for free, so anyone can automate their refactoring. But not everyone has dozens of hours to understand complexity of abstract-syntax-tree in their own time. **That's why we provide commercial support - to save your time**.

Would you like to apply Rector on your code base but don't have time for the struggle with your project? [Hire us](https://getrector.org/contact) to get there faster.
Would you like to apply Rector on your code base but don't have time for the struggle with your project? [Hire us](https://getrector.com/contact) to get there faster.

<br>

Expand Down
2 changes: 1 addition & 1 deletion build/target-repository/docs/auto_import_names.md
Expand Up @@ -2,4 +2,4 @@

This page was moved to new documentation.

You can find it here: https://getrector.org/documentation/
You can find it here: https://getrector.com/documentation/
2 changes: 1 addition & 1 deletion build/target-repository/docs/how_it_works.md
Expand Up @@ -3,4 +3,4 @@

This page was moved to new documentation.

You can find it here: https://getrector.org/documentation/
You can find it here: https://getrector.com/documentation/
Expand Up @@ -3,4 +3,4 @@

This page was moved to new documentation.

You can find it here: https://getrector.org/documentation/
You can find it here: https://getrector.com/documentation/
2 changes: 1 addition & 1 deletion build/target-repository/docs/how_to_configure_rules.md
Expand Up @@ -3,4 +3,4 @@

This page was moved to new documentation.

You can find it here: https://getrector.org/documentation/
You can find it here: https://getrector.com/documentation/
Expand Up @@ -2,4 +2,4 @@

This page was moved to new documentation.

You can find it here: https://getrector.org/documentation/
You can find it here: https://getrector.com/documentation/
Expand Up @@ -2,4 +2,4 @@

This page was moved to new documentation.

You can find it here: https://getrector.org/documentation/
You can find it here: https://getrector.com/documentation/
Expand Up @@ -2,4 +2,4 @@

This page was moved to new documentation.

You can find it here: https://getrector.org/documentation/
You can find it here: https://getrector.com/documentation/
Expand Up @@ -2,4 +2,4 @@

This page was moved to new documentation.

You can find it here: https://getrector.org/documentation/
You can find it here: https://getrector.com/documentation/
Expand Up @@ -2,4 +2,4 @@

This page was moved to new documentation.

You can find it here: https://getrector.org/documentation/
You can find it here: https://getrector.com/documentation/
6 changes: 3 additions & 3 deletions composer.json
Expand Up @@ -10,7 +10,7 @@
"automation",
"migration"
],
"homepage": "https://getrector.org",
"homepage": "https://getrector.com",
"require": {
"php": "^8.1",
"ext-json": "*",
Expand Down Expand Up @@ -138,7 +138,7 @@
"extra": {
"patches": {
"illuminate/container": [
"patches/illuminate-container-container-php.patch"
"https://raw.githubusercontent.com/rectorphp/vendor-patches/main/patches//illuminate-container-container-php.patch"
],
"nikic/php-parser": [
"https://raw.githubusercontent.com/rectorphp/vendor-patches/main/patches/nikic-php-parser-lib-phpparser-node-expr-closure-php.patch",
Expand Down Expand Up @@ -178,4 +178,4 @@
},
"minimum-stability": "dev",
"prefer-stable": true
}
}
2 changes: 1 addition & 1 deletion packages/Config/RectorConfig.php
Expand Up @@ -119,7 +119,7 @@ public function ruleWithConfiguration(string $rectorClass, array $configuration)
Assert::isAOf($rectorClass, RectorInterface::class);
Assert::isAOf($rectorClass, ConfigurableRectorInterface::class);

// decorate with value object inliner so Symfony understands, see https://getrector.org/blog/2020/09/07/how-to-inline-value-object-in-symfony-php-config
// decorate with value object inliner so Symfony understands, see https://getrector.com/blog/2020/09/07/how-to-inline-value-object-in-symfony-php-config
array_walk_recursive($configuration, static function (&$value) {
if (is_object($value)) {
$value = ValueObjectInliner::inline($value);
Expand Down

0 comments on commit 56195b3

Please sign in to comment.