Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 9 |
Ratio | 100 % |
Changes | 0 |
1 | <?php |
||
24 | View Code Duplication | public function testCollectionWithCustomResourceKey() |
|
25 | { |
||
26 | $serializer = new Serializer(); |
||
27 | $result = $serializer->collection('custom', ['foo']); |
||
28 | |||
29 | $this->assertSame([ |
||
30 | 'custom' => ['foo'] |
||
31 | ], $result); |
||
32 | } |
||
33 | |||
54 |