Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
42 | protected function sendMessageToRollbar($message, $level) |
||
43 | { |
||
44 | if ($this->has('ftrrtf_rollbar.notifier')) { |
||
45 | /** @var \Ftrrtf\Rollbar\Notifier $rollbarNotifier */ |
||
46 | $rollbarNotifier = $this->get('ftrrtf_rollbar.notifier'); |
||
47 | $rollbarNotifier->reportMessage($message, $level); |
||
48 | } |
||
49 | } |
||
50 | } |
||
51 |