1 | <?php |
||
2 | |||
3 | /* |
||
4 | * This file is part of the CoreSphereConsoleBundle. |
||
5 | * |
||
6 | * (c) Laszlo Korte <[email protected]> |
||
7 | * |
||
8 | * For the full copyright and license information, please view the LICENSE |
||
9 | * file that was distributed with this source code. |
||
10 | */ |
||
11 | |||
12 | namespace CoreSphere\ConsoleBundle; |
||
13 | |||
14 | use CoreSphere\ConsoleBundle\DependencyInjection\Extension\CoreSphereConsoleExtension; |
||
15 | use Symfony\Component\HttpKernel\Bundle\Bundle; |
||
16 | |||
17 | class CoreSphereConsoleBundle extends Bundle |
||
18 | { |
||
19 | /** |
||
20 | * {@inheritdoc} |
||
21 | */ |
||
22 | public function getContainerExtension() |
||
23 | { |
||
24 | return new CoreSphereConsoleExtension(); |
||
25 | } |
||
26 | } |
||
27 |