I was trying to parse the Json request body that was sent to my REST API and I would like to confirm the json is in a proper format.
To make my life easier, I converted json into StdClass, let the code access whatever property is expected. If the property is not exists, FuelPHP will throw an PhpErrorException with message Undefined Property xxxxxxx....
I can see the getCode returns 8, but I would like to know is that 8 means Undefined Property? And is there a list of possible error code I can refers to?