예제 #1
0
파일: UserClient.php 프로젝트: kokx/Firal
 /**
  * Register a user
  *
  * @param array $data
  *
  * @return bool
  */
 public function register(array $data)
 {
     $form = $this->getRegisterForm();
     if (!$form->isValid($data)) {
         return false;
     }
     return $this->_client->register($form->getValues());
 }