We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30f7c59 commit 03b4302Copy full SHA for 03b4302
1 file changed
rollbar.php
@@ -78,7 +78,9 @@ public static function flush() {
78
}
79
80
// Send errors that have these levels
81
-define('ROLLBAR_INCLUDED_ERRNO_BITMASK', E_ERROR | E_WARNING | E_PARSE | E_CORE_ERROR | E_USER_ERROR | E_RECOVERABLE_ERROR);
+if (!defined('ROLLBAR_INCLUDED_ERRNO_BITMASK')) {
82
+ define('ROLLBAR_INCLUDED_ERRNO_BITMASK', E_ERROR | E_WARNING | E_PARSE | E_CORE_ERROR | E_USER_ERROR | E_RECOVERABLE_ERROR);
83
+}
84
85
class RollbarNotifier {
86
const VERSION = "0.9.4";
0 commit comments