mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-20 08:36:14 +02:00
tea/Classes/Domain/Repository/Product/TeaRepository.php
2019-12-07 12:13:32 +01:00

24 lines
526 B
PHP

<?php
declare(strict_types=1);
namespace TTN\Tea\Domain\Repository\Product;
use TTN\Tea\Domain\Repository\Traits\StoragePageAgnosticTrait;
use TYPO3\CMS\Extbase\Persistence\QueryInterface;
use TYPO3\CMS\Extbase\Persistence\Repository;
/**
* Repository for Tea models.
*
* @author Oliver Klee <typo3-coding@oliverklee.de
*/
class TeaRepository extends Repository
{
use StoragePageAgnosticTrait;
/**
* @var string[]
*/
protected $defaultOrderings = ['title' => QueryInterface::ORDER_ASCENDING];
}