mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 13:57:10 +02:00
Changed App namespace to Infinito namespace
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace App\Form;
|
||||
namespace Infinito\Form;
|
||||
|
||||
use Symfony\Component\Form\AbstractType as AbstractSymfonyType;
|
||||
|
||||
|
@@ -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
|
||||
|
@@ -1,8 +1,8 @@
|
||||
<?php
|
||||
|
||||
namespace App\Form\Source;
|
||||
namespace Infinito\Form\Source;
|
||||
|
||||
use App\Form\TypeInterface;
|
||||
use Infinito\Form\TypeInterface;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
|
@@ -1,8 +1,8 @@
|
||||
<?php
|
||||
|
||||
namespace App\Form\Source;
|
||||
namespace Infinito\Form\Source;
|
||||
|
||||
use App\Form\AbstractType;
|
||||
use Infinito\Form\AbstractType;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
|
@@ -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
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace App\Form\Type;
|
||||
namespace Infinito\Form\Type;
|
||||
|
||||
use Symfony\Component\Form\FormTypeInterface;
|
||||
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace App\Form;
|
||||
namespace Infinito\Form;
|
||||
|
||||
use Symfony\Component\Form\FormTypeInterface;
|
||||
|
||||
|
@@ -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;
|
||||
|
||||
|
@@ -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;
|
||||
|
Reference in New Issue
Block a user