Code Duplication    Length = 13-13 lines in 2 locations

Tests/Unit/DependencyInjection/FOSHttpCacheExtensionTest.php 1 location

@@ 360-372 (lines=13) @@
357
        return $container;
358
    }
359
360
    protected function getBaseConfig()
361
    {
362
        return array(
363
            'proxy_client' => array(
364
                'varnish' => array(
365
                    'base_url' => 'my_hostname',
366
                    'servers' => array(
367
                        '127.0.0.1',
368
                    ),
369
                ),
370
            ),
371
        );
372
    }
373
374
    /**
375
     * @param ContainerBuilder $container

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

@@ 103-115 (lines=13) @@
100
        )));
101
    }
102
103
    protected function getBaseConfig()
104
    {
105
        return array(
106
            'proxy_client' => array(
107
                'varnish' => array(
108
                    'base_url' => 'my_hostname',
109
                    'servers' => array(
110
                        '127.0.0.1',
111
                    ),
112
                ),
113
            ),
114
        );
115
    }
116
}
117