Skip to content

Instantly share code, notes, and snippets.

@jsmitka
Created January 24, 2010 11:42
Show Gist options
  • Save jsmitka/285163 to your computer and use it in GitHub Desktop.
Save jsmitka/285163 to your computer and use it in GitHub Desktop.
<?php
class MyPresenter extends BasePresenter
{
protected function createComponentSomeForm()
{
$form = new AppForm();
// ...
return $form;
}
protected function createComponentAnyForm()
{
$form = $this->createComponentSomeForm();
// ...
return $form;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment