-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAlphaLemonThemeEngineBundle.php
More file actions
executable file
·33 lines (29 loc) · 1.08 KB
/
AlphaLemonThemeEngineBundle.php
File metadata and controls
executable file
·33 lines (29 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
/**
* This file is part of the AlphaLemonThemeEngineBundle and it is distributed
* under the MIT License. To use this bundle you must leave
* intact this copyright notice.
*
* Copyright (c) AlphaLemon <webmaster@alphalemon.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* For extra documentation and help please visit http://alphalemon.com
*
* @license MIT License
*/
namespace AlphaLemon\ThemeEngineBundle;
use Symfony\Component\HttpKernel\Bundle\Bundle;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use AlphaLemon\ThemeEngineBundle\Core\Rendering\Compiler\RegisterRenderingListenersPass;
use AlphaLemon\ThemeEngineBundle\Core\Compiler\AlThemesCollectionCompilerPass;
class AlphaLemonThemeEngineBundle extends Bundle
{
public function build(ContainerBuilder $container)
{
parent::build($container);
$container->addCompilerPass(new RegisterRenderingListenersPass());
$container->addCompilerPass(new AlThemesCollectionCompilerPass());
}
}