| Total Complexity | 2 | 
| Total Lines | 23 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 10 | trait Registration  | 
            ||
| 11 | { | 
            ||
| 12 | /**  | 
            ||
| 13 | * Set registration  | 
            ||
| 14 | *  | 
            ||
| 15 | * @param \App\Entity\Registration $registration  | 
            ||
| 16 | * @return object  | 
            ||
| 17 | */  | 
            ||
| 18 | public function setRegistration(RegistrationEntity $registration = null)  | 
            ||
| 19 |     { | 
            ||
| 20 | $this->registration = $registration;  | 
            ||
| 
                                                                                                    
                        
                         | 
                |||
| 21 | |||
| 22 | return $this;  | 
            ||
| 23 | }  | 
            ||
| 24 | |||
| 25 | /**  | 
            ||
| 26 | * Get registration  | 
            ||
| 27 | *  | 
            ||
| 28 | * @return \App\Entity\Registration  | 
            ||
| 29 | */  | 
            ||
| 30 | public function getRegistration()  | 
            ||
| 33 | }  | 
            ||
| 34 | }  | 
            ||
| 35 |