Total Complexity | 4 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | final class ODMRepositoryProxyTest extends RepositoryProxyTest |
||
12 | { |
||
13 | protected function setUp(): void |
||
14 | { |
||
15 | if (false === \getenv('MONGO_URL')) { |
||
16 | self::markTestSkipped('doctrine/odm not enabled.'); |
||
17 | } |
||
18 | } |
||
19 | |||
20 | protected function categoryClass(): string |
||
21 | { |
||
22 | return Category::class; |
||
23 | } |
||
24 | |||
25 | protected function categoryFactoryClass(): string |
||
28 | } |
||
29 | } |
||
30 |