forked from codeconsortium/CCDNUserSecurityBundle
-
Notifications
You must be signed in to change notification settings - Fork 3
/
CCDNUserSecurityBundle.php
41 lines (37 loc) · 980 Bytes
/
CCDNUserSecurityBundle.php
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
34
35
36
37
38
39
40
41
<?php
/*
* This file is part of the CCDNUser SecurityBundle
*
* (c) CCDN (c) CodeConsortium <http://www.codeconsortium.com/>
*
* Available on github <http://www.github.com/codeconsortium/>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace CCDNUser\SecurityBundle;
use Symfony\Component\HttpKernel\Bundle\Bundle;
use Symfony\Component\DependencyInjection\ContainerBuilder;
/**
*
* @category CCDNUser
* @package SecurityBundle
*
* @author Reece Fowell <reece@codeconsortium.com>
* @license http://opensource.org/licenses/MIT MIT
* @version Release: 1.0
* @link https://github.com/codeconsortium/CCDNUserSecurityBundle
*
*/
class CCDNUserSecurityBundle extends Bundle
{
/**
*
* @access public
* @param ContainerBuilder $container
*/
public function build(ContainerBuilder $container)
{
parent::build($container);
}
}