Skip to content
This repository has been archived by the owner on Dec 2, 2021. It is now read-only.

Commit

Permalink
Remove short array syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
umpirsky committed Aug 17, 2016
1 parent 4c35b23 commit e7f0238
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Security/TwoFactor/Renderer.php
Expand Up @@ -17,8 +17,8 @@ public function __construct(EngineInterface $templating, $formTemplate)
}

public function render(AuthenticationContextInterface $context) {
return $this->templating->renderResponse($this->formTemplate, [
return $this->templating->renderResponse($this->formTemplate, array(
'useTrustedOption' => $context->useTrustedOption(),
]);
));
}
}

0 comments on commit e7f0238

Please sign in to comment.