Skip to content

Commit 9fb1390

Browse files
authored
fix: check if api key is set in Honeybadger::event (#198)
1 parent 991f96e commit 9fb1390

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/Honeybadger.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ public function clear(): Reporter
216216
*/
217217
public function event($eventTypeOrPayload, array $payload = null): void
218218
{
219-
if (!$this->config['events']['enabled']) {
219+
if (empty($this->config['api_key']) || ! $this->config['events']['enabled']) {
220220
return;
221221
}
222222

tests/LogEventHandlerTest.php

+2
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ public function it_formats_a_log_for_events_api()
3030
{
3131
$client = $this->createMock(HoneybadgerClient::class);
3232
$config = new Config([
33+
'api_key' => '1234',
3334
'events' => [
3435
'enabled' => true
3536
]
@@ -68,6 +69,7 @@ public function it_ignores_logs_below_its_minimum_level()
6869
{
6970
$client = $this->createMock(HoneybadgerClient::class);
7071
$config = new Config([
72+
'api_key' => '1234',
7173
'events' => [
7274
'enabled' => true
7375
]

0 commit comments

Comments
 (0)