-
Notifications
You must be signed in to change notification settings - Fork 0
/
TeaAndCodeAPIBundle.php
executable file
·42 lines (39 loc) · 1.09 KB
/
TeaAndCodeAPIBundle.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
42
<?php
/**
* Tea and Code API Bundle
*
* PHP version 5
*
* @package TeaAndCode\APIBundle\Object
* @author Dave Nash <dave.nash@teaandcode.com>
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version GIT: $Id$
* @link http://www.teaandcode.com/symfony-2/api-bundle APIBundle Docs
*/
namespace TeaAndCode\APIBundle;
use Symfony\Component\HttpKernel\Bundle\Bundle;
use Symfony\Component\DependencyInjection\ContainerBuilder;
/**
* This class kicks off use for the bundle
*
* @package TeaAndCode\APIBundle\TeaAndCodeAPIBundle
* @author Dave Nash <dave.nash@teaandcode.com>
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link http://www.teaandcode.com/symfony-2/api-bundle APIBundle Docs
*/
class TeaAndCodeAPIBundle extends Bundle
{
/**
* Builds the bundle
*
* @param ContainerBuilder $container Symfony Container object
*
* @access public
* @return void
*/
public function build(ContainerBuilder $container)
{
parent::build($container);
}
}