Releases: VapiAI/server-sdk-php
Releases · VapiAI/server-sdk-php
1.0.1
style: use string interpolation in JsonException messages Replace string concatenation with double-quoted string interpolation in error messages thrown by JsonDecoder, JsonDeserializer, and JsonSerializer. The resulting messages are identical at runtime. Key changes: - Replace `"..." . $json` with `"...$json"` in JsonDecoder error messages - Replace `"..." . $type` with `"...$type"` in JsonDeserializer error message - Replace `"..." . $unionType` with `"...$unionType"` in JsonSerializer error message 🌿 Generated with Fern