Code Duplication    Length = 16-16 lines in 2 locations

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

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

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

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