Skip to content

Commit 593d19c

Browse files
committed
cleanup
1 parent 79f7fd5 commit 593d19c

File tree

4 files changed

+8
-15
lines changed

4 files changed

+8
-15
lines changed

.editorconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
root = true
22

3-
[*.{css,html,js,json,latte,neon,php,twig,xml,yaml,yml}]
3+
[*]
44
charset = utf-8
55
end_of_line = lf
66
insert_final_newline = true

config/config.yaml

+7-4
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,15 @@ imports:
99
parameters:
1010
# processed paths
1111
paths: []
12+
file_extensions:
13+
- 'php'
14+
15+
# exclude
1216
exclude_paths: []
1317
exclude_rectors: []
18+
1419
autoload_paths: []
20+
1521
rector_recipe: []
1622

1723
# this helps to separate opened 3rd party code vs private code approach (e.g. use of public constants)
@@ -20,7 +26,7 @@ parameters:
2026
# lower for performance; higher to prevent bugs with fluent interfaces like https://github.com/rectorphp/rector/issues/1646, or https://github.com/rectorphp/rector/issues/2444
2127
nested_chain_method_call_limit: 30
2228

23-
# importing FQN names
29+
# importing FQN names; false disables "import_short_classes" and "import_doc_blocks" options bellow
2430
auto_import_names: false
2531
# e.g. import \DateTime
2632
import_short_classes: true
@@ -29,6 +35,3 @@ parameters:
2935

3036
# what PHP version is used for features, composer.json version, then local PHP version is used by default
3137
php_version_features: null
32-
33-
file_extensions:
34-
- 'php'

config/services.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ services:
99
- '../src/Rector/**/*Rector.php'
1010
- '../src/Testing/PHPUnit/*'
1111
- '../src/RectorDefinition/*'
12-
- '../src/PhpParser/Node/*Info.php'
1312
- '../src/Exception/*'
1413
- '../src/DependencyInjection/CompilerPass/*'
1514
- '../src/DependencyInjection/Loader/*'

rules/nette-to-symfony/tests/Rector/ClassMethod/RouterListToControllerAnnotationsRetor/Source/SymfonyRouteAnnotation.php

-9
This file was deleted.

0 commit comments

Comments
 (0)