mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-10 00:16:11 +01:00
Fix Category type miss match during import
Extbase Category repository was used, while custom Category instances were expected. The repository didn't inherit from Extbase Repository and therefore didn't provide expected findByUid method.
This commit is contained in:
parent
919db32131
commit
8ded245785
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ use TYPO3\CMS\Extbase\Domain\Model\Category;
|
|||
use TYPO3\CMS\Extbase\Persistence\Generic\Mapper\DataMapper;
|
||||
use TYPO3\CMS\Extbase\Persistence\Repository;
|
||||
|
||||
class CategoryRepository
|
||||
class CategoryRepository extends Repository
|
||||
{
|
||||
/**
|
||||
* @var ConnectionPool
|
||||
|
|
Loading…
Reference in a new issue