Skip to content

Commit aa38993

Browse files
committed
remove \Stringable
1 parent 34d0b6b commit aa38993

12 files changed

Lines changed: 12 additions & 13 deletions

composer.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@
2727
"ext-mbstring": "*",
2828
"ext-curl": "*",
2929
"guzzlehttp/psr7": "^1.8.4|^2.1.1",
30-
"psr/log": "^1.0|^2.0|^3.0",
31-
"symfony/polyfill-php80": "^v1.33.0"
30+
"psr/log": "^1.0|^2.0|^3.0"
3231
},
3332
"require-dev": {
3433
"friendsofphp/php-cs-fixer": "^3.4",

src/CheckInStatus.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
/**
88
* This enum represents all the possible status of a check in.
99
*/
10-
final class CheckInStatus implements \Stringable
10+
final class CheckInStatus
1111
{
1212
/**
1313
* @var string The value of the enum instance

src/Dsn.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*
1111
* @author Stefano Arlandini <sarlandini@alice.it>
1212
*/
13-
final class Dsn implements \Stringable
13+
final class Dsn
1414
{
1515
/**
1616
* @var string Regex to match the organization ID in the host.

src/EventId.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
*
1212
* @author Stefano Arlandini <sarlandini@alice.it>
1313
*/
14-
final class EventId implements \Stringable
14+
final class EventId
1515
{
1616
/**
1717
* @var string The ID

src/EventType.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*
1111
* @author Stefano Arlandini <sarlandini@alice.it>
1212
*/
13-
final class EventType implements \Stringable
13+
final class EventType
1414
{
1515
/**
1616
* @var string The value of the enum instance

src/MonitorScheduleUnit.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
namespace Sentry;
66

7-
final class MonitorScheduleUnit implements \Stringable
7+
final class MonitorScheduleUnit
88
{
99
/**
1010
* @var string The value of the enum instance

src/Severity.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*
1111
* @author Stefano Arlandini <sarlandini@alice.it>
1212
*/
13-
final class Severity implements \Stringable
13+
final class Severity
1414
{
1515
/**
1616
* This constant represents the "debug" severity level.

src/Tracing/SpanId.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/**
1010
* This class represents an span ID.
1111
*/
12-
final class SpanId implements \Stringable
12+
final class SpanId
1313
{
1414
/**
1515
* @var string The ID

src/Tracing/SpanStatus.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
namespace Sentry\Tracing;
66

7-
final class SpanStatus implements \Stringable
7+
final class SpanStatus
88
{
99
/**
1010
* @var string The value of the enum instance

src/Tracing/TraceId.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/**
1010
* This class represents an trace ID.
1111
*/
12-
final class TraceId implements \Stringable
12+
final class TraceId
1313
{
1414
/**
1515
* @var string The ID

0 commit comments

Comments
 (0)