propel-bundle/PropelBundle.php

31 lines
590 B
PHP
Raw Normal View History

2013-06-09 00:19:30 +02:00
<?php
/**
* This file is part of the PropelBundle package.
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @license MIT License
*/
namespace Propel\PropelBundle;
use Symfony\Component\HttpKernel\Bundle\Bundle;
use Symfony\Component\DependencyInjection\ContainerBuilder;
/**
* PropelBundle
*
* @author William DURAND <william.durand1@gmail.com>
*/
class PropelBundle extends Bundle
{
public function boot()
{
}
public function build(ContainerBuilder $container)
{
}
}