Created
March 8, 2013 16:45
-
-
Save jimbojsb/5117857 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"_id": "foo", | |
"mapping": { | |
"1->2->3": "tag1", | |
"$woozles!!": "tag2" | |
}, | |
"origin": { | |
"name": "Walmart.com", | |
"slug": "walmart" | |
} | |
} | |
Mapping this to PHP objects works fine now without the mapping sub-document, and the API ends up being: | |
$f = new Foo; | |
$name = $foo->origin->name | |
But, if we apply the same hydration logic, it would attempt to create object properties like "1->2->3". In reality, I need to know that some sub-documents shouldn't be hyrdated into objects, but should be kept as hashes |
ralphschindler
commented
Mar 8, 2013
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment