Code

< 40 %
40-60 %
> 60 %
1
<?php
2
3
namespace SymfonyBundles\RedisBundle;
4
5
use SymfonyBundles\RedisBundle\DependencyInjection\RedisExtension;
6
use Symfony\Component\HttpKernel\Bundle\Bundle;
7
8
class SymfonyBundlesRedisBundle extends Bundle
9
{
10
    /**
11
     * {@inheritdoc}
12 1
     */
13
    public function getContainerExtension(): RedisExtension
14 1
    {
15
        return new RedisExtension();
16
    }
17
}
18