You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -174,7 +174,7 @@ The 3.0 version of the bundle uses the newest version (2.x) of the underlying Se
174
174
175
175
The Sentry 2.0 SDK uses the Unified API, hence it uses the concept of `Scope`s to hold information about the current
176
176
state of the app, and attach it to any event that is reported. This bundle has three listeners (`RequestListener`,
177
-
`SubRequestListener` and `ConsoleListener`) that adds some easy default information. Since 3.5, a fourth listener has been added to handle the case of Messanger Workers: `MessengerListener`.
177
+
`SubRequestListener` and `ConsoleListener`) that adds some easy default information. Since 3.5, a fourth listener has been added to handle the case of Messenger Workers: `MessengerListener`.
178
178
179
179
Those listeners normally are executed with a priority of `1` to allow easier customization with custom listener, that by
Copy file name to clipboardexpand all lines: UPGRADE-3.0.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,7 @@ changed:
39
39
* All services are now private; declare public aliases to access them if needed; you can still use the Sentry SDK global
40
40
functions if you want just to capture messages manually without injecting Sentry services in your code
41
41
* All services uses the full qualified name of their interfaces to name them
42
-
* The `ExceptionListener` has been splitted and renamed: we now have a simpler `ErrorListener`, and three other listeners
42
+
* The `ExceptionListener` has been split and renamed: we now have a simpler `ErrorListener`, and three other listeners
43
43
dedicated to enriching events of data (`RequestListener`, `SubRequestListener` and `ConsoleListener`)
44
44
* The listeners are now `final`; append your own listeners to override their behavior
45
45
* The `SentrySymfonyEvents::PRE_CAPTURE` and `SentrySymfonyEvents::SET_USER_CONTEXT` events are dropped; if you want to inject data into your events, write your own listener in a similar fashion to `RequestListener`, using the `Hub` and the `Scope` to handle how and when the new information is attached to events
@@ -53,7 +53,7 @@ This is a brief description of the services registered by this bundle:
53
53
*`Sentry\State\HubInterface`: this is the central root of the SDK; it's the `Hub` that the bundle will instantiate at
54
54
startup, and the current one too if you do not change it
55
55
*`Sentry\ClientInterface`: this is the proper client; compared to the 1.x SDK version it's a lot more slimmed down,
56
-
since a lot of the stuff has been splitted in separated components, so you probably will not interact with it as much as
56
+
since a lot of the stuff has been split in separated components, so you probably will not interact with it as much as
57
57
in the past. You also have to remind you that the client is bound to the `Hub`, and has to be changed there if you want
58
58
to use a different one automatically in error reporting
59
59
*`Sentry\ClientBuilderInterface`: this is the factory that builds the client; you can call its methods to change all
0 commit comments