示例#1
0
文件: Index.php 项目: pr-of-it/profit
 public function actionRegister($email = null, $password = null)
 {
     $identity = new Identity();
     $errors = new \T4\Html\Form\Exception();
     try {
         $email = $identity->validateEmail($email);
     } catch (\T4\Auth\Exception $e) {
     }
 }