Changed App namespace to Infinito namespace

This commit is contained in:
Kevin Frantz
2019-02-17 14:33:19 +01:00
parent bf5d11a318
commit 493471df5f
424 changed files with 1488 additions and 1500 deletions

View File

@@ -1,6 +1,6 @@
<?php
namespace App\Form;
namespace Infinito\Form;
use Symfony\Component\Form\AbstractType as AbstractSymfonyType;

View File

@@ -1,12 +1,12 @@
<?php
namespace App\Form\Source;
namespace Infinito\Form\Source;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;
use App\Entity\Source\PureSource;
use App\Attribut\SlugAttributInterface;
use App\Attribut\ClassAttributInterface;
use Infinito\Entity\Source\PureSource;
use Infinito\Attribut\SlugAttributInterface;
use Infinito\Attribut\ClassAttributInterface;
/**
* @author kevinfrantz

View File

@@ -1,8 +1,8 @@
<?php
namespace App\Form\Source;
namespace Infinito\Form\Source;
use App\Form\TypeInterface;
use Infinito\Form\TypeInterface;
/**
* @author kevinfrantz

View File

@@ -1,8 +1,8 @@
<?php
namespace App\Form\Source;
namespace Infinito\Form\Source;
use App\Form\AbstractType;
use Infinito\Form\AbstractType;
/**
* @author kevinfrantz

View File

@@ -1,18 +1,18 @@
<?php
namespace App\Form\Type;
namespace Infinito\Form\Type;
use App\Form\AbstractType;
use Infinito\Form\AbstractType;
use Symfony\Component\OptionsResolver\OptionsResolver;
use Symfony\Component\Form\Extension\Core\Type\ChoiceType;
use App\Domain\SourceManagement\SourceClassInformationService;
use Infinito\Domain\SourceManagement\SourceClassInformationService;
/**
* @author kevinfrantz
*/
final class SourceType extends AbstractType implements SourceTypeInterface
{
const UNUSED_PRAEFIX = 'App\\Entity\\Source';
const UNUSED_PRAEFIX = 'Infinito\\Entity\\Source';
/**
* @param string $class

View File

@@ -1,6 +1,6 @@
<?php
namespace App\Form\Type;
namespace Infinito\Form\Type;
use Symfony\Component\Form\FormTypeInterface;

View File

@@ -1,6 +1,6 @@
<?php
namespace App\Form;
namespace Infinito\Form;
use Symfony\Component\Form\FormTypeInterface;

View File

@@ -1,8 +1,8 @@
<?php
namespace App\Form;
namespace Infinito\Form;
use App\Entity\User;
use Infinito\Entity\User;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;

View File

@@ -1,8 +1,8 @@
<?php
namespace App\Form;
namespace Infinito\Form;
use App\Entity\User;
use Infinito\Entity\User;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;
use Symfony\Component\Form\Extension\Core\Type\TextType;