mirror of
				https://github.com/kevinveenbirkenbach/infinito.git
				synced 2025-11-04 11:17:58 +00:00 
			
		
		
		
	Optimized ORM Draft
This commit is contained in:
		@@ -1,20 +1,16 @@
 | 
			
		||||
<?php
 | 
			
		||||
namespace App\Entity;
 | 
			
		||||
 | 
			
		||||
use Doctrine\Common\Collections\ArrayCollection;
 | 
			
		||||
use App\Entity\Attribut\SourceAttributInterface;
 | 
			
		||||
use App\Entity\Attribut\IdAttributInterface;
 | 
			
		||||
use App\Entity\Attribut\ParentsAttributInterface;
 | 
			
		||||
use App\Entity\Attribut\ChildsAttributeInterface;
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * @author kevinfrantz
 | 
			
		||||
 *        
 | 
			
		||||
 */
 | 
			
		||||
interface NodeInterface extends SourceAttributInterface, IdAttributInterface,ParentsAttributInterface
 | 
			
		||||
{   
 | 
			
		||||
    public function setChilds(ArrayCollection $childs):void;
 | 
			
		||||
    
 | 
			
		||||
    public function getChilds():ArrayCollection;
 | 
			
		||||
}
 | 
			
		||||
interface NodeInterface extends SourceAttributInterface, IdAttributInterface,ParentsAttributInterface,ChildsAttributeInterface
 | 
			
		||||
{}
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user