aboutsummaryrefslogtreecommitdiff
path: root/php/src/Google/Protobuf/Internal/MapField.php
Commit message (Collapse)AuthorAgeFilesLines
* Repeated/Map field setter should accept a regular PHP array (#2817)Paul Yang2017-03-101-0/+24
| | | | | | | | Accept regular PHP array for repeated/map setter. Existing map/repeated field will be swapped by a clean map/repeated field. Then, elements in the array will be added to the map/repeated field. All elements will be type checked before adding. See #2686 for detail.
* Check in php implementation. (#2052)Paul Yang2016-09-151-0/+321
This pull request includes two implementation: C extension and PHP package. Both implementations support encode/decode of singular, repeated and map fields.