mirror of
				https://github.com/kevinveenbirkenbach/infinito.git
				synced 2025-11-04 03:07:58 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			286 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			286 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
namespace App\Entity\Attribut;
 | 
						|
use Doctrine\Common\Collections\ArrayCollection;
 | 
						|
/**
 | 
						|
 *
 | 
						|
 * @author kevinfrantz
 | 
						|
 *        
 | 
						|
 */
 | 
						|
interface ChildsAttributeInterface
 | 
						|
{
 | 
						|
    public function setChilds(ArrayCollection $childs):void;
 | 
						|
    
 | 
						|
    public function getChilds():ArrayCollection;
 | 
						|
}
 | 
						|
 |