Browse Source

Renomage du bundle

feature/ticket
Fab 3 years ago
parent
commit
56aa5a715f
2 changed files with 4 additions and 4 deletions
  1. +1
    -1
      DependencyInjection/LcCaracoleExtension.php
  2. +3
    -3
      LcCaracoleBundle.php

DependencyInjection/CaracoleExtension.php → DependencyInjection/LcCaracoleExtension.php View File

@@ -8,7 +8,7 @@ use Symfony\Component\DependencyInjection\Extension\Extension;
use Symfony\Component\DependencyInjection\Extension\PrependExtensionInterface;
use Symfony\Component\DependencyInjection\Loader\YamlFileLoader;

class CaracoleExtension extends Extension implements PrependExtensionInterface
class LcCaracoleExtension extends Extension implements PrependExtensionInterface
{
public function load(array $configs, ContainerBuilder $container)
{

CaracoleBundle.php → LcCaracoleBundle.php View File

@@ -2,13 +2,13 @@

namespace Lc\CaracoleBundle;

use Lc\ShopBundle\DependencyInjection\CaracoleExtension;
use Lc\CaracoleBundle\DependencyInjection\LcCaracoleExtension;
use Symfony\Component\HttpKernel\Bundle\Bundle;

class CaracoleBundle extends Bundle
class LcCaracoleBundle extends Bundle
{
public function getContainerExtension()
{
return new CaracoleExtension();
return new LcCaracoleExtension();
}
}

Loading…
Cancel
Save