Code Duplication    Length = 9-10 lines in 2 locations

Tests/StarWars/Schema/StarWarsData.php 2 locations

@@ 24-33 (lines=10) @@
21
        ];
22
    }
23
24
    private static function vader()
25
    {
26
        return [
27
            'id'         => '1001',
28
            'name'       => 'Darth Vader',
29
            'friends'    => ['1004'],
30
            'appearsIn'  => [4, 5, 6],
31
            'homePlanet' => 'Tatooine',
32
        ];
33
    }
34
35
    private static function han()
36
    {
@@ 35-43 (lines=9) @@
32
        ];
33
    }
34
35
    private static function han()
36
    {
37
        return [
38
            'id'        => '1002',
39
            'name'      => 'Han Solo',
40
            'friends'   => ['1000', '1003', '2001'],
41
            'appearsIn' => [4, 5, 6],
42
        ];
43
    }
44
45
    private static function leia()
46
    {