Rename namespace for shorter name
This commit is contained in:
parent
a3b201dc3c
commit
4b3cb50b1f
@ -1,9 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace Ardent\ArdentParameterBundle;
|
||||
|
||||
namespace Ardent\ParameterBundle;
|
||||
|
||||
use Symfony\Component\HttpKernel\Bundle\Bundle;
|
||||
|
||||
/**
|
||||
* Bundle.
|
||||
*/
|
||||
class ArdentParameterBundle extends Bundle
|
||||
{
|
||||
}
|
||||
|
@ -1,8 +1,8 @@
|
||||
<?php
|
||||
|
||||
namespace Ardent\ArdentParameterBundle\Controller;
|
||||
namespace Ardent\ParameterBundle\Controller;
|
||||
|
||||
use Ardent\ArdentParameterBundle\Service\ParameterService;
|
||||
use Ardent\ParameterBundle\Service\ParameterService;
|
||||
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
||||
use Symfony\Component\Form\Extension\Core\Type\CheckboxType;
|
||||
use Symfony\Component\Form\Extension\Core\Type\ChoiceType;
|
||||
|
@ -1,10 +0,0 @@
|
||||
<?php
|
||||
|
||||
|
||||
namespace Ardent\ArdentParameterBundle\Controller;
|
||||
|
||||
|
||||
class test
|
||||
{
|
||||
|
||||
}
|
@ -1,7 +1,8 @@
|
||||
<?php
|
||||
|
||||
namespace Ardent\ArdentParameterBundle\DependencyInjection;
|
||||
namespace Ardent\ParameterBundle\DependencyInjection;
|
||||
|
||||
use Ardent\ParameterBundle\Entity\Parameter;
|
||||
use Symfony\Component\Config\FileLocator;
|
||||
use Symfony\Component\DependencyInjection\ContainerBuilder;
|
||||
use Symfony\Component\DependencyInjection\Extension\Extension;
|
||||
@ -16,5 +17,9 @@ class ArdentParameterExtension extends Extension
|
||||
new FileLocator(__DIR__.'/../Resources/config')
|
||||
);
|
||||
$loader->load('services.yaml');
|
||||
|
||||
$this->addAnnotatedClassesToCompile([
|
||||
Parameter::class,
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace Ardent\ArdentParameterBundle\Entity;
|
||||
namespace Ardent\ParameterBundle\Entity;
|
||||
|
||||
use Doctrine\ORM\Mapping as ORM;
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace Ardent\ArdentParameterBundle\Service;
|
||||
namespace Ardent\ParameterBundle\Service;
|
||||
|
||||
use Ardent\ParameterBundle\Entity\Parameter;
|
||||
use Doctrine\ORM\EntityManagerInterface;
|
||||
|
Loading…
Reference in New Issue
Block a user