Browse Source

Merge branch 'develop' of https://gitea.laclic.fr/Laclic/CaracoleBundle into develop

feature/ticket
Guillaume 3 years ago
parent
commit
6c9fd39201
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

use Symfony\Component\DependencyInjection\Extension\PrependExtensionInterface; use Symfony\Component\DependencyInjection\Extension\PrependExtensionInterface;
use Symfony\Component\DependencyInjection\Loader\YamlFileLoader; 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) public function load(array $configs, ContainerBuilder $container)
{ {

CaracoleBundle.php → LcCaracoleBundle.php View File



namespace Lc\CaracoleBundle; namespace Lc\CaracoleBundle;


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


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

Loading…
Cancel
Save