File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
- ## Not released
3
+ ## 0.11.0
4
4
- Fix false positive in ` ReturnTypeDeclarationSniff ` with nullable types.
5
5
- Relax check for missing return type when ` {aType}|null ` doc bloc is present.
6
6
- Add ` is ` to the list of allowed short names.
7
7
- Added ` FunctionBodyStartSniff ` to deal with blank lines on top of functions body.
8
8
- Added ` VariablesNameSniff ` .
9
9
- Improved ` PhpcsHelpers::variableIsProperty() ` .
10
10
- Improved failure handling in FixturesTest.
11
+ - Use NeutronStandard by opting-in rules instead of opting-out
12
+ - Properly handle Generators and return types.
11
13
12
14
## 0.10.0
13
15
- Renamed sniffs namespace (** breaking change** ).
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ It means they can be installed by adding the entry to composer.json `require-dev
12
12
``` json
13
13
{
14
14
"require-dev" : {
15
- "inpsyde/php-coding-standards" : " ~0.10 .0"
15
+ "inpsyde/php-coding-standards" : " ~0.11 .0"
16
16
}
17
17
}
18
18
```
Original file line number Diff line number Diff line change 43
43
},
44
44
"extra" : {
45
45
"branch-alias" : {
46
- "dev-master" : " 0.10 .x-dev"
46
+ "dev-master" : " 0.11 .x-dev"
47
47
}
48
48
}
49
49
}
You can’t perform that action at this time.
0 commit comments