| @@ -46,9 +46,9 @@ | ||
| 46 | 46 | * Decode a raw string into a DTO instance. Assumes that the raw string is a base64 encoded JSON string. |
| 47 | 47 | * |
| 48 | 48 | * @return static|null |
| 49 | 49 | */ |
| 50 | - public static function decode( string $raw ): mixed { | |
| 50 | + public static function decode( string $raw ) { | |
| 51 | 51 | $decoded = base64_decode( $raw ); |
| 52 | 52 | if ( ! $decoded ) { |
| 53 | 53 | return null; |
| 54 | 54 | } |