Skip to content

Commit

Permalink
Use a more simple Rector ruleset that does not change anything
Browse files Browse the repository at this point in the history
  • Loading branch information
mpdude committed Mar 6, 2021
1 parent e7cc41f commit 09d6bf7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/system-tests/dont-execute-code/rector.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
$parameters = $containerConfigurator->parameters();
$parameters->set(Option::PATHS, [__DIR__.'/src']);

$parameters->set(Option::SETS, [SetList::TYPE_DECLARATION]);
$parameters->set(Option::SETS, [SetList::PHP_53]);
};

2 changes: 1 addition & 1 deletion tests/system-tests/parse-php7-code/rector.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
$parameters = $containerConfigurator->parameters();
$parameters->set(Option::PATHS, [__DIR__.'/src']);

$parameters->set(Option::SETS, [SetList::TYPE_DECLARATION]);
$parameters->set(Option::SETS, [SetList::PHP_53]);
};

2 changes: 1 addition & 1 deletion tests/system-tests/parse-php8-code/rector.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
$parameters = $containerConfigurator->parameters();
$parameters->set(Option::PATHS, [__DIR__.'/src']);

$parameters->set(Option::SETS, [SetList::TYPE_DECLARATION]);
$parameters->set(Option::SETS, [SetList::PHP_53]);
};

0 comments on commit 09d6bf7

Please sign in to comment.