Skip to content

Commit c73c7f1

Browse files
committed
Fix PHP 5.3 incompatibility
1 parent 36c0020 commit c73c7f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/LdcUserProfile/Service/ProfileService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ public function validate(FormInterface $form, array $data)
9191
$this->getEventManager()->trigger(__METHOD__.'.pre', $this, $argv);
9292
$form->setData($data);
9393
$isValid = $form->isValid();
94-
$this->getEventManager()->trigger(__METHOD__.'.post', $this, $argv + ['success' => $isValid]);
94+
$this->getEventManager()->trigger(__METHOD__.'.post', $this, $argv + array('success' => $isValid));
9595

9696
return $isValid;
9797
}

0 commit comments

Comments
 (0)