private function recordImportedUser($origId, $userId)
 {
     Yammer_user::record($origId, $userId);
 }
Example #2
0
 /**
  * Count the number of Yammer users we've mapped into our system!
  *
  * @return int
  */
 public function countUsers()
 {
     $map = new Yammer_user();
     return $map->count();
 }