mirror of
				https://github.com/kevinveenbirkenbach/infinito.git
				synced 2025-10-31 09:19:08 +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 | ||||
| { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user