예제 #1
0
 public function try_login($email, $password)
 {
     $authentification = new Authentification();
     if ($authentification->login($email, $password)) {
         return true;
     } else {
         return false;
     }
 }