We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b9f5a7 commit ceafe4dCopy full SHA for ceafe4d
README.md
@@ -35,6 +35,9 @@ $notifier = new Faultline\Notifier([
35
]
36
]);
37
38
+// Set global notifier instance.
39
+Faultline\Instance::set($notifier);
40
+
41
// Register error and exception handlers.
42
$handler = new Faultline\ErrorHandler($notifier);
43
$handler->register();
src/Instance.php
@@ -0,0 +1,8 @@
1
+<?php
2
3
+namespace Faultline;
4
5
+class Instance extends \Airbrake\Instance
6
+{
7
8
+}
0 commit comments