Code Duplication    Length = 18-18 lines in 2 locations

Tests/Unit/DependencyInjection/Compiler/LoggerPassTest.php 1 location

@@ 69-86 (lines=18) @@
66
        )));
67
    }
68
69
    private function getConfig()
70
    {
71
        return array(
72
            'proxy_client' => array(
73
                'varnish' => array(
74
                    'http' => [
75
                        'base_url' => 'my_hostname',
76
                        'servers' => array(
77
                            '127.0.0.1',
78
                        ),
79
                    ],
80
                ),
81
            ),
82
            'tags' => array(
83
                'enabled' => true,
84
            ),
85
        );
86
    }
87
}
88

Tests/Unit/DependencyInjection/Compiler/TagListenerPassTest.php 1 location

@@ 42-59 (lines=18) @@
39
        )));
40
    }
41
42
    protected function getConfig()
43
    {
44
        return array(
45
            'proxy_client' => array(
46
                'varnish' => array(
47
                    'http' => [
48
                        'base_url' => 'my_hostname',
49
                        'servers' => array(
50
                            '127.0.0.1',
51
                        ),
52
                    ],
53
                ),
54
            ),
55
            'tags' => array(
56
                'enabled' => true,
57
            ),
58
        );
59
    }
60
}
61