tobyzerner / json-api-server

A JSON:API server implementation in PHP.
https://tobyzerner.github.io/json-api-server/
MIT License
63 stars 21 forks source link

fix: error when attributes is null #98

Closed SychO9 closed 3 months ago

SychO9 commented 5 months ago

If for whatever reason a request has the attributes value as null (or relationships value). a PHP error is thrown where the code expects it to be an array.

POST /records

{
  "data": {
    "type": "records",
    "attributes": null
  }
}