We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
26 | public function testInvalidResolverMap(array $resolverMaps, $type) |
||
27 | { |
||
28 | $this->expectException(\InvalidArgumentException::class); |
||
29 | $this->expectExceptionMessage(sprintf( |
||
30 | 'ResolverMap should be instance of "%s" but got "%s".', |
||
31 | ResolverMapInterface::class, |
||
32 | $type |
||
33 | )); |
||
34 | new ResolverMaps($resolverMaps); |
||
35 | } |
||
36 | |||
48 |