Move namespace of DeepNormalize attribute.

This commit is contained in:
Buster "Silver Eagle" Neece 2021-05-31 16:30:40 -05:00
parent f45f34cb25
commit b620c378a0
No known key found for this signature in database
GPG Key ID: 6D9E12FF03411F4E
7 changed files with 7 additions and 7 deletions

View File

@ -6,7 +6,7 @@ namespace App\Entity;
use App\Annotations\AuditLog;
use App\Environment;
use App\Normalizer\Annotation\DeepNormalize;
use App\Normalizer\Attributes\DeepNormalize;
use App\Radio\Adapters;
use App\Utilities\File;
use App\Validator\Constraints as AppAssert;

View File

@ -7,7 +7,7 @@ namespace App\Entity;
use App\Entity\Interfaces\PathAwareInterface;
use App\Entity\Interfaces\ProcessableMediaInterface;
use App\Entity\Interfaces\SongInterface;
use App\Normalizer\Annotation\DeepNormalize;
use App\Normalizer\Attributes\DeepNormalize;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping as ORM;

View File

@ -5,7 +5,7 @@
namespace App\Entity;
use App\Annotations\AuditLog;
use App\Normalizer\Annotation\DeepNormalize;
use App\Normalizer\Attributes\DeepNormalize;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping as ORM;

View File

@ -5,7 +5,7 @@
namespace App\Entity;
use App\Annotations\AuditLog;
use App\Normalizer\Annotation\DeepNormalize;
use App\Normalizer\Attributes\DeepNormalize;
use App\Validator\Constraints\UniqueEntity;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;

View File

@ -6,7 +6,7 @@ namespace App\Entity;
use App\Annotations\AuditLog;
use App\Auth;
use App\Normalizer\Annotation\DeepNormalize;
use App\Normalizer\Attributes\DeepNormalize;
use App\Validator\Constraints\UniqueEntity;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;

View File

@ -1,6 +1,6 @@
<?php
namespace App\Normalizer\Annotation;
namespace App\Normalizer\Attributes;
use Attribute;

View File

@ -3,7 +3,7 @@
namespace App\Normalizer;
use App\Exception\NoGetterAvailableException;
use App\Normalizer\Annotation\DeepNormalize;
use App\Normalizer\Attributes\DeepNormalize;
use DateTime;
use Doctrine\Common\Annotations\Reader;
use Doctrine\Common\Collections\Collection;