aboutsummaryrefslogtreecommitdiff
path: root/php/src/Google/Protobuf/Internal/FileOptions.php
Commit message (Collapse)AuthorAgeFilesLines
* Merge master into 3.4.xJisi Liu2017-07-181-138/+216
|\
| * Support PHP generic services (#3269)Matt A2017-07-181-0/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add php_generic_services option * Generate PHP generic services * Respect namespaces for generated PHP services * Test PHP generated services * Rename PHP generator service method doc comment function * Correct phpdoc service method case * Test namespaced PHP generic services * Always use the FQCN for PHP generic service input/output * Add generated_service_test to php test.sh * Add php service test protos to CI * Add php service files to php_EXTRA_DIST * Use Interface suffix for php generic services
| * remove pass by reference for php setters (#3344)Brent Shaffer2017-07-171-1/+1
| | | | | | | | | | | | * remove pass by reference for php setters * comments out memory leak test
| * adds PHPDoc @return and @param for getters and setters respectively (#3131)Brent Shaffer2017-06-271-145/+109
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * adds PHPDoc @return and @param for getters and setters respectively * addresses changes in PR review * adds documentation tests * Update php_generator: - Prepend \ to names where required - Remove <pre> tags - Update protobuf field comments * Updates class files with the protobuf changes * Addresses review comments * removes Protobuf Type line from PHP generated classes * fixes phpdoc test * adds array types to phpdoc
| * Add new file option php_namespace. (#3162)Paul Yang2017-06-051-0/+82
|/ | | | | | | | | | | | | | | | * Add new file option php_namespace. Use this option to change the namespace of php generated classes. Default is empty. When this option is empty, the package name will be used for determining the namespace. * Uncomment commented tests * Revert gdb test change * Update csharp descriptor. * Add test for empty php_namespace.
* Add file option php_class_prefix (#2849)Paul Yang2017-03-171-2/+45
| | | | This option will be prepended to generated classes of all messages in the containing file.
* Make php generated code conform to PSR-4. (#2435)Paul Yang2016-12-081-0/+741
1. Generate single file for each message. 2. Lazily initiate metadata.