| Total Complexity | 2 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | class TransactionRepositoryTest extends AbstractRepositoryTest |
||
| 15 | { |
||
| 16 | use LimitedAccessSubQuery; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @var TransactionRepository |
||
| 20 | */ |
||
| 21 | private $repository; |
||
| 22 | |||
| 23 | public function setUp(): void |
||
| 24 | { |
||
| 25 | parent::setUp(); |
||
| 26 | $this->repository = _em()->getRepository(Transaction::class); |
||
| 27 | } |
||
| 28 | |||
| 29 | public function providerGetAccessibleSubQuery(): array |
||
| 40 | ]; |
||
| 41 | } |
||
| 43 |