You've already forked symfony-storage
version 1.0
This commit is contained in:
22
StorageBundle/StorageBundle.php
Normal file
22
StorageBundle/StorageBundle.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
namespace Bluesquare\StorageBundle;
|
||||
|
||||
use Bluesquare\StorageBundle\DependencyInjection\StorageExtension;
|
||||
use Symfony\Component\DependencyInjection\ContainerBuilder;
|
||||
use Symfony\Component\HttpKernel\Bundle\Bundle;
|
||||
|
||||
class StorageBundle extends Bundle
|
||||
{
|
||||
public function build(ContainerBuilder $container)
|
||||
{
|
||||
parent::build($container);
|
||||
}
|
||||
|
||||
public function getContainerExtension()
|
||||
{
|
||||
if (null === $this->extension)
|
||||
$this->extension = new StorageExtension();
|
||||
return $this->extension;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user