Skip to content

Instantly share code, notes, and snippets.

@Crisfole
Created April 27, 2016 13:31
Show Gist options
  • Save Crisfole/5d82040ee20f0d23622ffdae5b450401 to your computer and use it in GitHub Desktop.
Save Crisfole/5d82040ee20f0d23622ffdae5b450401 to your computer and use it in GitHub Desktop.
<?php
function isEnabled() {
return SHOULD_BE_ENABLED;
}
function reportMessage(msg) {
if (isEnabled()) {
Rollbar::report_message(msg);
}
}
if (isEnabled()) {
Rollbar::init(config);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment