mirror of
				https://github.com/kevinveenbirkenbach/infinito.git
				synced 2025-11-04 11:17:58 +00:00 
			
		
		
		
	Solved some naming bugs
This commit is contained in:
		@@ -2,7 +2,7 @@
 | 
			
		||||
 | 
			
		||||
namespace App\Entity\Attribut;
 | 
			
		||||
 | 
			
		||||
use App\Entity\Meta\Relation\CreatorRelationInterface;
 | 
			
		||||
use App\Entity\Meta\Relation\Parent\CreatorRelationInterface;
 | 
			
		||||
 | 
			
		||||
trait CreatorRelationAttribut
 | 
			
		||||
{
 | 
			
		||||
 
 | 
			
		||||
@@ -2,7 +2,7 @@
 | 
			
		||||
 | 
			
		||||
namespace App\Entity\Attribut;
 | 
			
		||||
 | 
			
		||||
use App\Entity\Meta\Relation\CreatorRelationInterface;
 | 
			
		||||
use App\Entity\Meta\Relation\Parent\CreatorRelationInterface;
 | 
			
		||||
 | 
			
		||||
interface CreatorRelationAttributInterface
 | 
			
		||||
{
 | 
			
		||||
 
 | 
			
		||||
@@ -4,14 +4,13 @@ namespace App\Entity\Meta\Relation\Parent;
 | 
			
		||||
 | 
			
		||||
use Doctrine\ORM\Mapping as ORM;
 | 
			
		||||
use Doctrine\Common\Collections\Collection;
 | 
			
		||||
use App\Entity\Meta\Relation\CreatorRelationInterface;
 | 
			
		||||
use App\Entity\Source\SourceInterface;
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * @author kevinfrantz
 | 
			
		||||
 * @ORM\Entity()
 | 
			
		||||
 */
 | 
			
		||||
class CreatorRelation extends AbstractParentRelation
 | 
			
		||||
class CreatorRelation extends AbstractParentRelation implements CreatorRelationInterface
 | 
			
		||||
{
 | 
			
		||||
    /**
 | 
			
		||||
     * @ORM\OneToOne(targetEntity="App\Entity\Source\AbstractSource",cascade={"persist", "remove"})
 | 
			
		||||
 
 | 
			
		||||
@@ -1,6 +1,8 @@
 | 
			
		||||
<?php
 | 
			
		||||
 | 
			
		||||
namespace App\Entity\Meta\Relation;
 | 
			
		||||
namespace App\Entity\Meta\Relation\Parent;
 | 
			
		||||
 | 
			
		||||
use App\Entity\Meta\Relation\RelationInterface;
 | 
			
		||||
 | 
			
		||||
interface CreatorRelationInterface extends RelationInterface
 | 
			
		||||
{
 | 
			
		||||
 
 | 
			
		||||
@@ -5,7 +5,7 @@ namespace App\Tests\Unit\Entity\Attribut;
 | 
			
		||||
use PHPUnit\Framework\TestCase;
 | 
			
		||||
use App\Entity\Attribut\CreatorRelationAttributInterface;
 | 
			
		||||
use App\Entity\Attribut\CreatorRelationAttribut;
 | 
			
		||||
use App\Entity\Meta\Relation\CreatorRelationInterface;
 | 
			
		||||
use App\Entity\Meta\Relation\Parent\CreatorRelationInterface;
 | 
			
		||||
 | 
			
		||||
class CreatorRelationAttributTest extends TestCase
 | 
			
		||||
{
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@
 | 
			
		||||
namespace App\Tests\Unit\Entity\Attribut;
 | 
			
		||||
 | 
			
		||||
use PHPUnit\Framework\TestCase;
 | 
			
		||||
use App\Entity\Meta\RelationInterface;
 | 
			
		||||
use App\Entity\Meta\Relation\RelationInterface;
 | 
			
		||||
use App\Entity\Attribut\RelationAttributInterface;
 | 
			
		||||
use App\Entity\Attribut\RelationAttribut;
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user