Michi Hoffmann
Michi Hoffmann
PHPCS will complain about missing return-type hints when you bake your first command. ```php Method \App\Command\AppCommand::execute() does not have native return type hint for its return value but it should...
Many users have been confused and frustrated by the fact that after the automatically created page load transaction is finished, XMLHttpRequest and fetch requests are only automatically instrumented with the...
https://develop-git-new-span-schema.sentry.dev/sdk/event-payloads/only-spans/
https://develop-git-queue-module.sentry.dev/sdk/performance/modules/queue/ **Producer**  **Consumer** 
We should clarify the payload of each event type in the docs. This is mainly for - [ ] Errors/Messages - [ ] Transactions - [ ] Check-Ins Document things...
Another approach to fix https://github.com/getsentry/sentry-php/pull/1716. Compared to other SDKs, like [Python](https://docs.sentry.io/platforms/python/enriching-events/transaction-name/), the PHP SDK never exposed the transaction name on the scope. With these changes, the transaction name will be...
https://github.com/getsentry/sentry-php/blob/1b9e3b2f9304f777b5b0eb98e3b770d820ecb888/src/Integration/TransactionIntegration.php#L39-L43 We should make sure we always end up writing something into `$event->transaction`, to offer a better UX in the product. With my local setup, `$_SERVER['PATH_INFO']` seems to be not...
On https://docs.sentry.io/platforms/javascript/guides/vue/sourcemaps/uploading/vite/, we mention > The Sentry Vite plugin doesn’t upload source maps in watch-mode/development-mode. We recommend running a production build to test your configuration. However, running `vite`, I get...
```php \Sentry\init([...]); $client = SentrySDK::getCurrentHub()->getClient(); if ($client !== null) { ... } ``` ```php $client = \Sentry\init([...]); ``` Seems beneficial to make this change.