DragonByte Tech
Well-known member
- Affected version
- 2.2.0b4
In
The fix would be to change these two instances to
\XF\Repository\ChangeLog
, findChangeLogsByContent
and findChangeLogsByContentType
have string
as their argument type in the php docblock, but string[]
is also a valid value. This causes phpStorm to complain about argument not being compatible with declaration when called with an array. The fix would be to change these two instances to
string|string[]
.