Skip to content

Commit

Permalink
Remove the final keyword from Hub, Client and Scope (#1665)
Browse files Browse the repository at this point in the history
  • Loading branch information
cleptric authored Dec 21, 2023
1 parent 00a1e60 commit c3e68c4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,8 @@

/**
* Default implementation of the {@see ClientInterface} interface.
*
* @author Stefano Arlandini <sarlandini@alice.it>
*/
final class Client implements ClientInterface
class Client implements ClientInterface
{
/**
* The version of the protocol to communicate with the Sentry server.
Expand Down
2 changes: 1 addition & 1 deletion src/State/Hub.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
/**
* This class is a basic implementation of the {@see HubInterface} interface.
*/
final class Hub implements HubInterface
class Hub implements HubInterface
{
/**
* @var Layer[] The stack of client/scope pairs
Expand Down
2 changes: 1 addition & 1 deletion src/State/Scope.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* The scope holds data that should implicitly be sent with Sentry events. It
* can hold context data, extra parameters, level overrides, fingerprints etc.
*/
final class Scope
class Scope
{
/**
* @var PropagationContext
Expand Down

0 comments on commit c3e68c4

Please sign in to comment.