Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 9 |
Ratio | 100 % |
Changes | 0 |
1 | <?php |
||
14 | View Code Duplication | public function testCollectionWithDefaultResourceKey() |
|
15 | { |
||
16 | $serializer = new Serializer(); |
||
17 | $result = $serializer->collection(null, ['foo']); |
||
18 | |||
19 | $this->assertSame([ |
||
20 | 'data' => ['foo'] |
||
21 | ], $result); |
||
22 | } |
||
23 | |||
54 |