public function __construct(UserFormComponent $userForm)
 {
     parent::__construct(self::NAME, $userForm);
     $this->userForm = $userForm;
 }
 /**
  * Constructor
  */
 public function __construct($mediatorName, $viewComponent = null)
 {
     parent::__construct(ViewTestMediator::NAME, $viewComponent);
 }
 /**
  * Constructor
  */
 public function __construct($view)
 {
     parent::__construct(ApplicationMediator::NAME, $view);
 }
 public function __construct(UserListComponent $userList)
 {
     parent::__construct(self::NAME, $userList);
     $this->userList = $userList;
 }
 /**
  * Constructor
  */
 public function __construct($mediatorName, $viewComponent = null)
 {
     parent::__construct($mediatorName, $viewComponent);
 }
 public function __construct(LayoutComponent $layout)
 {
     parent::__construct(self::NAME, $layout);
     $this->layout = $layout;
 }
 /**
  * Constructor.
  * 
  * @param string $name
  * @param Junction $viewComponent
  * @return JunctionMediator
  */
 public function __construct($name, Junction $viewComponent)
 {
     parent::__construct($name, $viewComponent);
 }
 /**
  * Constructor.
  * 
  * @return StateMachine
  */
 public function __construct()
 {
     parent::__construct(StateMachine::NAME);
 }
 public function __construct(RolePanelComponent $rolePanel)
 {
     parent::__construct(self::NAME, $rolePanel);
     $this->rolePanel = $rolePanel;
 }