File tree 3 files changed +9
-11
lines changed
3 files changed +9
-11
lines changed Original file line number Diff line number Diff line change 11
11
],
12
12
"require" : {
13
13
"php" : " ^7.1" ,
14
- "dealerdirect/phpcodesniffer-composer-installer" : " ^0.5.0 " ,
14
+ "dealerdirect/phpcodesniffer-composer-installer" : " ^0.6.2 " ,
15
15
"escapestudios/symfony2-coding-standard" : " ^3.6" ,
16
16
"phpmd/phpmd" : " ^2.6" ,
17
- "slevomat/coding-standard" : " ^5 .0" ,
17
+ "slevomat/coding-standard" : " ^6 .0" ,
18
18
"squizlabs/php_codesniffer" : " ^3.4"
19
19
},
20
20
"autoload" : {
Original file line number Diff line number Diff line change 64
64
65
65
<!-- Use PHP native type hints whenever possible. Use docblocks only when
66
66
the use of native type hints is impossible. -->
67
- <rule ref =" SlevomatCodingStandard.TypeHints.TypeHintDeclaration" >
68
- <properties >
69
- <property name =" allAnnotationsAreUseful" value =" true" />
70
- <property name =" enableEachParameterAndReturnInspection" value =" true" />
71
- </properties >
72
- </rule >
67
+ <rule ref =" SlevomatCodingStandard.TypeHints.ParameterTypeHint" />
68
+ <rule ref =" SlevomatCodingStandard.TypeHints.PropertyTypeHint" />
69
+ <rule ref =" SlevomatCodingStandard.TypeHints.ReturnTypeHint" />
73
70
74
71
<!-- Ensure that arguments with a default type of null are marked nullable -->
75
72
<rule ref =" SlevomatCodingStandard.TypeHints.NullableTypeForNullDefaultValue" />
Original file line number Diff line number Diff line change @@ -30,9 +30,10 @@ PHPCBF CAN FIX THE 2 MARKED SNIFF VIOLATIONS AUTOMATICALLY
30
30
31
31
FILE: tests/incorrect/type-hints.php
32
32
------------------------------------------------------------------------------------------------------------------------
33
- FOUND 17 ERRORS AFFECTING 14 LINES
33
+ FOUND 18 ERRORS AFFECTING 15 LINES
34
34
------------------------------------------------------------------------------------------------------------------------
35
- 9 | ERROR | [x] Function doesNotNeedDocumentationComment() does not need documentation comment.
35
+ 5 | ERROR | [x] Function doesNotNeedDocumentationComment() has useless @param annotation for parameter $input.
36
+ 7 | ERROR | [x] Function doesNotNeedDocumentationComment() has useless @return annotation.
36
37
16 | ERROR | [x] Function uselessReturnAnnotation() has useless @return annotation.
37
38
23 | ERROR | [x] Function uselessParamAnnotation() has useless @param annotation for parameter $string.
38
39
35 | ERROR | [x] Function uselessAnnotationsWithUsefulComment() has useless @param annotation for parameter $string.
@@ -56,7 +57,7 @@ FOUND 17 ERRORS AFFECTING 14 LINES
56
57
76 | ERROR | [x] Expected "int" but found "integer" in @param annotation.
57
58
78 | ERROR | [x] Expected "bool" but found "boolean" in @return annotation.
58
59
------------------------------------------------------------------------------------------------------------------------
59
- PHPCBF CAN FIX THE 13 MARKED SNIFF VIOLATIONS AUTOMATICALLY
60
+ PHPCBF CAN FIX THE 14 MARKED SNIFF VIOLATIONS AUTOMATICALLY
60
61
------------------------------------------------------------------------------------------------------------------------
61
62
62
63
You can’t perform that action at this time.
0 commit comments