mirror of
				https://github.com/kevinveenbirkenbach/infinito.git
				synced 2025-10-31 17:29:04 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			247 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			247 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| namespace App\Entity\Attribut;
 | |
| 
 | |
| use App\Entity\LawInterface;
 | |
| 
 | |
| /**
 | |
|  *
 | |
|  * @author kevinfrantz
 | |
|  *        
 | |
|  */
 | |
| interface LawAttributInterface
 | |
| {
 | |
| 
 | |
|     public function setLaw(LawInterface $law):void;
 | |
| 
 | |
|     public function getLaw(): LawInterface;
 | |
| }
 | |
| 
 |