Skip to content

Commit

Permalink
Change variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
laoneo committed Sep 15, 2017
1 parent 755e6b4 commit 091e6ae
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions libraries/src/Form/FormFactoryAwareTrait.php
Expand Up @@ -46,15 +46,15 @@ public function getFormFactory()
/**
* Set the form factory to use.
*
* @param FormFactoryInterface $factory The form factory to use.
* @param FormFactoryInterface $formFactory The form factory to use.
*
* @return $this
*
* @since __DEPLOY_VERSION__
*/
public function setFormFactory(FormFactoryInterface $factory = null)
public function setFormFactory(FormFactoryInterface $formFactory = null)
{
$this->formFactory = $factory;
$this->formFactory = $formFactory;

return $this;
}
Expand Down

0 comments on commit 091e6ae

Please sign in to comment.