public function onPostBindFlow(PostBindFlowEvent $event)
 {
     $this->logEventCall('onPostBindFlow #' . $event->getFlow()->getCurrentStepNumber());
 }
 public function testEvent()
 {
     $formData = array('blah' => '123');
     $event = new PostBindFlowEvent($this->getMockedFlowInterface(), $formData);
     $this->assertEquals($formData, $event->getFormData());
 }