Guest User

Untitled

a guest
Jul 18th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <?hh
  2.  
  3. function workspaces_get_pref_stats_only_admins(workspace_t $workspace): bool {
  4. # Logging with a low sample rate
  5. if (mt_rand(1, 5000) == 7){
  6. log_event('workspaces_prefs_get', array('pref_name' => 'stats_only_admins'));
  7. }
  8.  
  9. $ret = workspaces_prefs_get_single_safe($workspace, 'stats_only_admins');
  10. if ($ret->is_error()) throw new WorkspacePrefFetchException('Workspace pref fetch failure');
  11. return (bool)$ret->get();
  12. }
Add Comment
Please, Sign In to add comment