/**
  * Connect with Facebook
  *
  * @return void
  */
 public function connect()
 {
     try {
         $this->FacebookConnect->connect();
     } catch (Exception $e) {
         debug($e);
         throw $e;
     }
 }