Commit f8ca3acd authored by Paul Yang's avatar Paul Yang Committed by GitHub

Generate phpdoc in php generated files. (#2406)

parent 851cb81d
This diff is collapsed.
...@@ -134,3 +134,8 @@ message TestUnpackedMessage { ...@@ -134,3 +134,8 @@ message TestUnpackedMessage {
repeated bool repeated_bool = 102 [packed = false]; repeated bool repeated_bool = 102 [packed = false];
repeated TestEnum repeated_enum = 103 [packed = false]; repeated TestEnum repeated_enum = 103 [packed = false];
} }
// /**/@<>&\{
message TestPhpDoc {
int32 a = 1;
}
...@@ -9,15 +9,27 @@ use Google\Protobuf\Internal\GPBType; ...@@ -9,15 +9,27 @@ use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\RepeatedField; use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\GPBUtil; use Google\Protobuf\Internal\GPBUtil;
/**
* Protobuf type <code>bar.TestInclude</code>
*/
class TestInclude extends \Google\Protobuf\Internal\Message class TestInclude extends \Google\Protobuf\Internal\Message
{ {
/**
* <code>optional int32 a = 1;</code>
*/
private $a = 0; private $a = 0;
/**
* <code>optional int32 a = 1;</code>
*/
public function getA() public function getA()
{ {
return $this->a; return $this->a;
} }
/**
* <code>optional int32 a = 1;</code>
*/
public function setA($var) public function setA($var)
{ {
GPBUtil::checkInt32($var); GPBUtil::checkInt32($var);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment