Ability to handle missing accesors for unknown objects in json

-  JSON body that has objects who do not have Model Getter Setters are handled properly
This commit is contained in:
Jay Patel
2015-02-23 21:18:45 -06:00
parent 397f1a66e2
commit bedb6aa047
7 changed files with 89 additions and 25 deletions

View File

@@ -46,7 +46,8 @@ class ModelAccessorValidator
return false;
}
}
return true;
}
return true;
return false;
}
}