Skip to content

Commit 1609752

Browse files
committed
Remove final to make these classes really extendable
1 parent d0a927f commit 1609752

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: src/Client.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
namespace Setono\Client;
66

7-
final class Client implements \Stringable, \JsonSerializable
7+
class Client implements \Stringable, \JsonSerializable
88
{
99
/**
1010
* The unique identifier of the client. This could be a UUID for example

Diff for: src/Metadata.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @implements \ArrayAccess<string, mixed>
99
* @implements \IteratorAggregate<string, mixed>
1010
*/
11-
final class Metadata implements \ArrayAccess, \Countable, \IteratorAggregate, \JsonSerializable
11+
class Metadata implements \ArrayAccess, \Countable, \IteratorAggregate, \JsonSerializable
1212
{
1313
public function __construct(
1414
/**

0 commit comments

Comments
 (0)