Hello,
We are receiving this error after we upgraded to XF2.1
Therefore, we want to upgrade an addon from XF2.0 to XF2.1
As (\XF\Entity\AbstractCategoryTree.php) does not exist anymore in XF2.1
Is it correct to replace this line in XF2.0 addons:
With this in XF2.1 addons:
?
We are receiving this error after we upgraded to XF2.1
Therefore, we want to upgrade an addon from XF2.0 to XF2.1
ErrorException: [E_WARNING] Declaration of EEES\XFRM\Admin\Controller\Category::categorySaveProcess(XF\Entity\AbstractCategoryTree $category) should be compatible with XFRM\Admin\Controller\Category::categorySaveProcess(XFRM\Entity\Category $category) in src/addons/EEES/XFRM/Admin/Controller/Category.php at line 24
As (\XF\Entity\AbstractCategoryTree.php) does not exist anymore in XF2.1
Is it correct to replace this line in XF2.0 addons:
Code:
protected function categorySaveProcess(\XF\Entity\AbstractCategoryTree $category)
With this in XF2.1 addons:
Code:
protected function categorySaveProcess(\XFRM\Entity\Category $category)
?