Skip to content

Commit f4280ee

Browse files
committed
Fix code path
1 parent 02f6df6 commit f4280ee

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/coding-standards.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ jobs:
2929
composer install
3030
mkdir -p tools/php-cs-fixer tools/rector
3131
composer require --working-dir=tools/php-cs-fixer friendsofphp/php-cs-fixer --dev
32-
composer require rector/rector -- dev
32+
composer require rector/rector --dev
3333
34-
- name: CONDING STANDARDS (ECS)
34+
- name: CODING STANDARDS (ECS)
3535
run: |
36-
tools/php-cs-fixer/vendor/bin/php-cs-fixer fix src
36+
tools/php-cs-fixer/vendor/bin/php-cs-fixer fix .
3737
3838
- name: CONDING STANDARDS (RECTOR)
3939
run: |
40-
tools/rector/vendor/bin/rector process src --ansi --dry-run --xdebug
40+
tools/rector/vendor/bin/rector process . --ansi --dry-run --xdebug

0 commit comments

Comments
 (0)