Conditions | 1 |
Paths | 1 |
Total Lines | 29 |
Code Lines | 26 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | public static function make(string $noticeId): string |
||
14 | { |
||
15 | $message = <<<'EX' |
||
16 | |||
17 | ⚡ --- Honeybadger is installed! ----------------------------------------------- |
||
18 | Good news: You're one deploy away from seeing all of your exceptions in |
||
19 | Honeybadger. For now, we've generated a test exception for you: |
||
20 | |||
21 | https://app.honeybadger.io/notice/%s |
||
22 | |||
23 | If you ever need help: |
||
24 | |||
25 | - Check out the documentation: https://docs.honeybadger.io/lib/php/index.html |
||
26 | - Email the 'badgers: [email protected] |
||
27 | |||
28 | Most people don't realize that Honeybadger is a small, bootstrapped company. We |
||
29 | really couldn't do this without you. Thank you for allowing us to do what we |
||
30 | love: making developers awesome. |
||
31 | |||
32 | Happy 'badgering! |
||
33 | |||
34 | Sincerely, |
||
35 | Ben, Josh and Starr |
||
36 | https://www.honeybadger.io/about/ |
||
37 | ⚡ --- End -------------------------------------------------------------------- |
||
38 | |||
39 | EX; |
||
40 | |||
41 | return sprintf($message, $noticeId); |
||
42 | } |
||
44 |