22 lines
463 B
PHP
22 lines
463 B
PHP
<?php
|
|
namespace Doctrine\Bundle\DoctrineCacheBundle;
|
|
|
|
use Symfony\Component\Console\Application;
|
|
use Symfony\Component\HttpKernel\Bundle\Bundle;
|
|
|
|
/**
|
|
* Symfony Bundle for Doctrine Cache
|
|
*
|
|
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
|
|
* @author Fabio B. Silva <fabio.bat.silva@gmail.com>
|
|
*/
|
|
class DoctrineCacheBundle extends Bundle
|
|
{
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
public function registerCommands(Application $application)
|
|
{
|
|
}
|
|
}
|