From 6b27c1f981a9a93918e4039f236ead27165a8e91 Mon Sep 17 00:00:00 2001 From: Paul Yang Date: Fri, 17 Mar 2017 11:08:06 -0700 Subject: Add file option php_class_prefix (#2849) This option will be prepended to generated classes of all messages in the containing file. --- php/src/Google/Protobuf/Internal/FileOptions.php | 47 +++++++++++++++++++++++- 1 file changed, 45 insertions(+), 2 deletions(-) (limited to 'php/src/Google/Protobuf/Internal/FileOptions.php') diff --git a/php/src/Google/Protobuf/Internal/FileOptions.php b/php/src/Google/Protobuf/Internal/FileOptions.php index 2422f3ee..22653a4f 100644 --- a/php/src/Google/Protobuf/Internal/FileOptions.php +++ b/php/src/Google/Protobuf/Internal/FileOptions.php @@ -176,6 +176,16 @@ class FileOptions extends \Google\Protobuf\Internal\Message */ private $swift_prefix = ''; private $has_swift_prefix = false; + /** + *
+     * Sets the php class prefix which is prepended to all php generated classes
+     * from this .proto. Default is empty.
+     * 
+ * + * optional string php_class_prefix = 40; + */ + private $php_class_prefix = ''; + private $has_php_class_prefix = false; /** *
      * The parser stores options it doesn't recognize here. See above.
@@ -706,6 +716,39 @@ class FileOptions extends \Google\Protobuf\Internal\Message
         return $this->has_swift_prefix;
     }
 
+    /**
+     * 
+     * Sets the php class prefix which is prepended to all php generated classes
+     * from this .proto. Default is empty.
+     * 
+ * + * optional string php_class_prefix = 40; + */ + public function getPhpClassPrefix() + { + return $this->php_class_prefix; + } + + /** + *
+     * Sets the php class prefix which is prepended to all php generated classes
+     * from this .proto. Default is empty.
+     * 
+ * + * optional string php_class_prefix = 40; + */ + public function setPhpClassPrefix($var) + { + GPBUtil::checkString($var, True); + $this->php_class_prefix = $var; + $this->has_php_class_prefix = true; + } + + public function hasPhpClassPrefix() + { + return $this->has_php_class_prefix; + } + /** *
      * The parser stores options it doesn't recognize here. See above.
@@ -727,8 +770,8 @@ class FileOptions extends \Google\Protobuf\Internal\Message
      */
     public function setUninterpretedOption(&$var)
     {
-        GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Protobuf\Internal\UninterpretedOption::class);
-        $this->uninterpreted_option = $var;
+        $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Protobuf\Internal\UninterpretedOption::class);
+        $this->uninterpreted_option = $arr;
         $this->has_uninterpreted_option = true;
     }
 
-- 
cgit v1.2.3