fix namespacing

This commit is contained in:
Tim 2020-07-25 15:40:27 +02:00
parent 07c593c56e
commit 3b1f813f17
6 changed files with 7 additions and 7 deletions

View File

@ -1,6 +1,6 @@
<?php
namespace App\Ardent\ParameterBundle;
namespace App\Ardent\ArdentParameterBundle;
use Symfony\Component\HttpKernel\Bundle\Bundle;

View File

@ -1,3 +1,3 @@
services:
App\Ardent\ParameterBundle\Service\ParameterService:
Ardent\ArdentParameterBundle\Service\ParameterService:
alias: 'ardent.parameter'

View File

@ -1,8 +1,8 @@
<?php
namespace App\Ardent\ParameterBundle\Controller;
namespace Ardent\ArdentParameterBundle\Controller;
use App\Ardent\ParameterBundle\Service\ParameterService;
use Ardent\ArdentParameterBundle\Service\ParameterService;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\Form\Extension\Core\Type\CheckboxType;
use Symfony\Component\Form\Extension\Core\Type\ChoiceType;

View File

@ -1,6 +1,6 @@
<?php
namespace App\Ardent\ParameterBundle\DependencyInjection;
namespace Ardent\ArdentParameterBundle\DependencyInjection;
use Symfony\Component\Config\FileLocator;
use Symfony\Component\DependencyInjection\ContainerBuilder;

View File

@ -1,6 +1,6 @@
<?php
namespace App\Ardent\ParameterBundle\Entity;
namespace Ardent\ArdentParameterBundle\Entity;
use Doctrine\ORM\Mapping as ORM;

View File

@ -1,6 +1,6 @@
<?php
namespace App\Ardent\ParameterBundle\Service;
namespace Ardent\ArdentParameterBundle\Service;
use App\Ardent\ParameterBundle\Entity\Parameter;
use Doctrine\ORM\EntityManagerInterface;