mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-09 23:56:14 +01:00
[CLEANUP] Add generics annotation to the Tea repository (#414)
This helps static code analysis determine for which models the repository is responsible.
This commit is contained in:
parent
869f348ce8
commit
bd3731934f
1 changed files with 2 additions and 1 deletions
|
@ -4,12 +4,13 @@ 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;
|
||||
|
||||
/**
|
||||
* Repository for Tea models.
|
||||
* @extends Repository<Tea>
|
||||
*/
|
||||
class TeaRepository extends Repository
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue