mirror of
				https://github.com/kevinveenbirkenbach/infinito.git
				synced 2025-10-31 17:29:04 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			240 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			240 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Entity\Attribut;
 | |
| 
 | |
| use App\Entity\UserInterface;
 | |
| 
 | |
| /**
 | |
|  * @author kevinfrantz
 | |
|  */
 | |
| interface UserAttributInterface
 | |
| {
 | |
|     public function setUser(UserInterface $user): void;
 | |
| 
 | |
|     public function getUser(): UserInterface;
 | |
| }
 |