diff --git a/src/Logger/Adapter/LogOwl.php b/src/Logger/Adapter/LogOwl.php index 5d7d2c7..43bb33d 100644 --- a/src/Logger/Adapter/LogOwl.php +++ b/src/Logger/Adapter/LogOwl.php @@ -28,7 +28,7 @@ class LogOwl extends Adapter * LogOwl constructor. * * @param string $ticket - * @param ?string $host + * @param string $host */ public function __construct(string $ticket, string $host = 'https://api.logowl.io/logging/') { diff --git a/tests/e2e/Adapter/SentryTest.php b/tests/e2e/Adapter/SentryTest.php index 4acfd1e..18509f6 100644 --- a/tests/e2e/Adapter/SentryTest.php +++ b/tests/e2e/Adapter/SentryTest.php @@ -10,6 +10,7 @@ class SentryTest extends AdapterBase protected function setUp(): void { parent::setUp(); - $this->adapter = new Sentry(\getenv('TEST_SENTRY_DSN') ?: ''); + var_dump(\getenv('TEST_SENTRY_DSN')); + $this->adapter = new Sentry('projectId', 'key'); } }