aboutsummaryrefslogtreecommitdiff
path: root/php/tests/test_util.php
Commit message (Collapse)AuthorAgeFilesLines
* Initialize python-wheel branchBo Yang2018-01-231-547/+0
|
* Switch to addEnumType to fix fatal error (#3225)Ryan Gordon2017-06-191-130/+150
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * Switch to addEnumType to fix fatal error * Fixing more cases of HHVM incompatibility * Updating tests to be hhvm compatible * Fixing tests * Fixing merge * Don't use call_user_func, should hopefully fix tests * Fixing spelling * Fixing another misspelling in a test * Fixing placement of append and kvUpdate functions * Actually fix function helpers * Remove double addEnumType. How did this ever work? * Fixing a couple more tests * Only use the setter if the return value isn't an object
* Make PHP c extension work with PHP7 (#2951)Paul Yang2017-04-191-2/+1
|
* Bug fix: When encoding, negative int32 values should be padded to int64 (#2660)Paul Yang2017-03-151-6/+6
| | | in order to be wire compatible.
* Rename encode/decode to serializeToString/mergeFromString (#2795)Paul Yang2017-03-081-0/+81
| | | | | This better shows the semantic of the API. For already setted fields, mergeFromString do replacement for singular fields and appending for repeated fields.
* Add clear method to PHP message (#2700)Paul Yang2017-02-111-0/+7
|
* Fix pure php implementation for 32-bit machine. (#2282)Paul Yang2016-10-251-38/+83
|
* PHP: support 7.0 on PHP implementation (#2162)Stanley Cheung2016-10-101-1/+3
| | | | | | * PHP: support 7.0 * Also fix in test_util.php
* Check in php implementation. (#2052)Paul Yang2016-09-151-0/+393
This pull request includes two implementation: C extension and PHP package. Both implementations support encode/decode of singular, repeated and map fields.