Optimized interface namespace path

This commit is contained in:
Kevin Frantz
2018-10-03 15:50:46 +02:00
parent e9e8fb91df
commit 871c100d28
41 changed files with 60 additions and 60 deletions

View File

@@ -5,8 +5,8 @@ namespace App\Entity;
use App\Entity\Attribut\NodeAttribut;
use Doctrine\ORM\Mapping as ORM;
use JMS\Serializer\Annotation\Exclude;
use App\Entity\Interfaces\SourceInterface;
use App\Entity\Interfaces\NodeInterface;
use App\Entity\SourceInterface;
use App\Entity\NodeInterface;
/**
* @author kevinfrantz

View File

@@ -5,7 +5,7 @@ namespace App\Entity;
use App\Entity\Attribut\NameAttribut;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Validator\Constraints as Assert;
use App\Entity\Interfaces\NameSourceInterface;
use App\Entity\NameSourceInterface;
/**
* @author kevinfrantz

View File

@@ -1,6 +1,6 @@
<?php
namespace App\Entity\Interfaces;
namespace App\Entity;
use App\Entity\Attribut\Interfaces\NameAttributInterface;

View File

@@ -1,6 +1,6 @@
<?php
namespace App\Entity\Interfaces;
namespace App\Entity;
use App\Entity\Attribut\Interfaces\NodeAttributInterface;
use App\Entity\Attribut\Interfaces\RecieverAttributInterface;

View File

@@ -6,8 +6,8 @@ use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Validator\Constraints as Assert;
use App\Entity\Attribut\UserAttribut;
use App\Entity\Attribut\NameSourceAttribut;
use App\Entity\Interfaces\UserSourceInterface;
use App\Entity\Interfaces\NameSourceInterface;
use App\Entity\UserSourceInterface;
use App\Entity\NameSourceInterface;
/**
* @author kevinfrantz

View File

@@ -1,6 +1,6 @@
<?php
namespace App\Entity\Interfaces;
namespace App\Entity;
use App\Entity\Attribut\Interfaces\UserAttributInterface;
use App\Entity\Attribut\Interfaces\NameSourceAttributInterface;