Skip to content

Commit bc3629d

Browse files
committed
back
1 parent 32c0c16 commit bc3629d

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.github/workflows/ci_build.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,7 @@ jobs:
3939
- name: "Code analyze"
4040
run: |
4141
bin/phpstan analyse src/ --level=max -c phpstan.neon
42-
bin/rector process config --dry-run
43-
bin/rector process spec --dry-run
44-
bin/rector process src --dry-run
42+
bin/rector process --dry-run
4543
- name: "Run test suite"
4644
run: |
4745
composer dump-autoload -o

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
"phpstan/phpstan": "^1.0",
7575
"phpstan/phpstan-webmozart-assert": "^1.0",
7676
"pimple/pimple": "^3.2",
77-
"rector/rector": "dev-main",
77+
"rector/rector": "0.12.9",
7878
"symfony/dependency-injection": "^5.0"
7979
},
8080
"suggest": {

rector.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
$containerConfigurator->import(SetList::TYPE_DECLARATION_STRICT);
2424

2525
$parameters = $containerConfigurator->parameters();
26-
$parameters->set(Option::PARALLEL, true);
26+
$parameters->set(Option::PATHS, [__DIR__ . '/config', __DIR__ . '/src', __DIR__ . '/spec']);
2727
$parameters->set(Option::AUTO_IMPORT_NAMES, true);
2828

2929
$parameters->set(Option::SKIP, [

0 commit comments

Comments
 (0)