Fixed Incorrect type hint for \XF\Repository\ChangeLog::addDataToLogs

DragonByte Tech

Well-known member
Affected version
2.3.0b4
PHP:
    /**
     * @param \XF\Entity\ChangeLog[] $logs
     */
    public function addDataToLogs($logs)

Should be
PHP:
    /**
     * @param \XF\Entity\ChangeLog[]|\XF\Mvc\Entity\AbstractCollection $logs
     */
    public function addDataToLogs($logs)
 
Thank you for reporting this issue, it has now been resolved. We are aiming to include any changes that have been made in a future XF release (2.3.0 Beta 8).

Change log:
Fix type hint in changelog repository
There may be a delay before changes are rolled out to the XenForo Community.
 
Top Bottom