mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 07:36:12 +01:00
4bde411dd8
Co-authored-by: Łukasz Uznański <l.uznanski@macopedia.com>
22 lines
472 B
PHP
22 lines
472 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.
|
|
*/
|
|
class TeaRepository extends Repository
|
|
{
|
|
use StoragePageAgnosticTrait;
|
|
|
|
/**
|
|
* @var string[]
|
|
*/
|
|
protected $defaultOrderings = ['title' => QueryInterface::ORDER_ASCENDING];
|
|
}
|