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