1.0.1 - Added exclusion for `SlevomatCodingStandard.Classes.DisallowLateStaticBindingForConstants`
parent
b3a56e85e1
commit
bf548d856d
|
@ -3,5 +3,8 @@ All notable changes to this package will be documented in this file
|
|||
|
||||
## Unreleased
|
||||
|
||||
## 1.0.1 - 2022-08-18
|
||||
- Added exclusion for `SlevomatCodingStandard.Classes.DisallowLateStaticBindingForConstants` to allow late static binding for constants [patch]
|
||||
|
||||
## 1.0.0 - 2022-08-20
|
||||
- Initial release [major]
|
||||
|
|
|
@ -22,6 +22,9 @@
|
|||
<!-- Disabled since subclasses can't always overrule parents -->
|
||||
<exclude name="SlevomatCodingStandard.TypeHints.PropertyTypeHint.MissingNativeTypeHint"/>
|
||||
|
||||
<!-- Disabled to allow late static binding for constants (static::CONST) -->
|
||||
<exclude name="SlevomatCodingStandard.Classes.DisallowLateStaticBindingForConstants"/>
|
||||
|
||||
<exclude name="SlevomatCodingStandard.TypeHints.PropertyTypeHint.MissingTraversableTypeHintSpecification"/>
|
||||
</rule>
|
||||
|
||||
|
|
Loading…
Reference in New Issue