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
|
## 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
|
## 1.0.0 - 2022-08-20
|
||||||
- Initial release [major]
|
- Initial release [major]
|
||||||
|
|
|
@ -22,6 +22,9 @@
|
||||||
<!-- Disabled since subclasses can't always overrule parents -->
|
<!-- Disabled since subclasses can't always overrule parents -->
|
||||||
<exclude name="SlevomatCodingStandard.TypeHints.PropertyTypeHint.MissingNativeTypeHint"/>
|
<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"/>
|
<exclude name="SlevomatCodingStandard.TypeHints.PropertyTypeHint.MissingTraversableTypeHintSpecification"/>
|
||||||
</rule>
|
</rule>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue