Skip to content

Instantly share code, notes, and snippets.

@matej21
Created May 19, 2015 21:08
Show Gist options
  • Save matej21/632139f8e043cce0c692 to your computer and use it in GitHub Desktop.
Save matej21/632139f8e043cce0c692 to your computer and use it in GitHub Desktop.
<?php
class MyFormFactory
{
public function create(BusinessCard $card)
{
$form = new Form;
$form->addText(...);
$form->onSuccess[] = function ($form) use ($card) {
$this->processForm($form, $card);
}
return $form;
}
private function processForm($form, $card)
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment