File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
- ## 3.0.0 - 2025-08-13
3
+ ## 3.0.1 - 2025-08-13
4
4
- Allow already decoded values to be used
5
5
6
6
## 2.2.0 - 2025-08-05
Original file line number Diff line number Diff line change @@ -19,5 +19,5 @@ public function getSchemaName(): ?string;
19
19
20
20
public function getSchema (): ?SchemaContract ;
21
21
22
- public function getData (): ? string ;
22
+ public function getData (): mixed ;
23
23
}
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ public function __construct(
11
11
protected bool $ result ,
12
12
protected string $ schemaName ,
13
13
protected ?SchemaContract $ schema = null ,
14
- protected ? string $ data = null ,
14
+ protected mixed $ data = null ,
15
15
protected ?Throwable $ exception = null ,
16
16
) {
17
17
//
@@ -47,7 +47,7 @@ public function getSchema(): ?SchemaContract
47
47
return $ this ->schema ;
48
48
}
49
49
50
- public function getData (): ? string
50
+ public function getData (): mixed
51
51
{
52
52
return $ this ->data ;
53
53
}
You can’t perform that action at this time.
0 commit comments