mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 09:16:13 +01:00
bd3731934f
This helps static code analysis determine for which models the repository is responsible.
23 lines
508 B
PHP
23 lines
508 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace TTN\Tea\Domain\Repository\Product;
|
|
|
|
use TTN\Tea\Domain\Model\Product\Tea;
|
|
use TTN\Tea\Domain\Repository\Traits\StoragePageAgnosticTrait;
|
|
use TYPO3\CMS\Extbase\Persistence\QueryInterface;
|
|
use TYPO3\CMS\Extbase\Persistence\Repository;
|
|
|
|
/**
|
|
* @extends Repository<Tea>
|
|
*/
|
|
class TeaRepository extends Repository
|
|
{
|
|
use StoragePageAgnosticTrait;
|
|
|
|
/**
|
|
* @var string[]
|
|
*/
|
|
protected $defaultOrderings = ['title' => QueryInterface::ORDER_ASCENDING];
|
|
}
|