diff --git a/platform-includes/logs/setup/php.mdx b/platform-includes/logs/setup/php.mdx index ed415e288aab0..c6c5ef7d93fa5 100644 --- a/platform-includes/logs/setup/php.mdx +++ b/platform-includes/logs/setup/php.mdx @@ -7,6 +7,6 @@ To enable logging, you need to initialize the SDK with the `enable_logs` option 'enable_logs' => true, ]); -// Somewhere at the end of you execution, you should flush the logger to send pending logs to Sentry. +// Somewhere at the end of your execution, you should flush the logger to send pending logs to Sentry. \Sentry\logger()->flush(); ``` diff --git a/platform-includes/logs/usage/php.mdx b/platform-includes/logs/usage/php.mdx index 927f6c1868825..3478465012309 100644 --- a/platform-includes/logs/usage/php.mdx +++ b/platform-includes/logs/usage/php.mdx @@ -14,6 +14,6 @@ You can pass additional attributes directly to the logging functions. These prop 'attribute4' => true, ]); -// Somewhere at the end of you execution, you should flush the logger to send pending logs to Sentry. +// Somewhere at the end of your execution, you should flush the logger to send pending logs to Sentry. \Sentry\logger()->flush(); ```