| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 10 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Tests | 0 | 
| CRAP Score | 2 | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 17 | public function sendUpdateEmailConfirmation(UserInterface $user, $confirmationUrl, $toEmail)  | 
            ||
| 18 |     { | 
            ||
| 19 | $template = $this->parameters['template'];  | 
            ||
| 20 | $rendered = $this->templating->render($template, array(  | 
            ||
| 21 | 'user' => $user,  | 
            ||
| 22 | 'confirmationUrl' => $confirmationUrl,  | 
            ||
| 23 | ));  | 
            ||
| 24 | |||
| 25 | $this->sendEmailMessage($rendered, $this->parameters['from_email'], $toEmail);  | 
            ||
| 26 | }  | 
            ||
| 27 | }  | 
            ||
| 28 |