mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 08:16:12 +01:00
16 lines
372 B
PHP
16 lines
372 B
PHP
<?php
|
|
declare(strict_types = 1);
|
|
namespace OliverKlee\Tea\Domain\Repository\Product;
|
|
|
|
use OliverKlee\Tea\Domain\Repository\Traits\StoragePageAgnosticTrait;
|
|
use TYPO3\CMS\Extbase\Persistence\Repository;
|
|
|
|
/**
|
|
* Repository for Tea models.
|
|
*
|
|
* @author Oliver Klee <typo3-coding@oliverklee.de
|
|
*/
|
|
class TeaRepository extends Repository
|
|
{
|
|
use StoragePageAgnosticTrait;
|
|
}
|