Total Complexity | 5 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | final class ODMProxyTest extends ProxyTest |
||
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 postFactoryClass(): string |
||
21 | { |
||
22 | return PostFactory::class; |
||
23 | } |
||
24 | |||
25 | protected function postClass(): string |
||
28 | } |
||
29 | |||
30 | protected function registryServiceId(): string |
||
33 | } |
||
34 | } |
||
35 |