Skip to content

Commit

Permalink
Fix GPBUtil::getFullClassName() argument order (#7629)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidgrayston committed Jul 7, 2020
1 parent 96a62f7 commit c02ded7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion php/src/Google/Protobuf/Internal/Descriptor.php
Original file line number Diff line number Diff line change
Expand Up @@ -185,8 +185,8 @@ public static function buildFromProto($proto, $file_proto, $containing)
$containing,
$file_proto,
$message_name_without_package,
$legacy_classname,
$classname,
$legacy_classname,
$fullname);
$desc->setFullName($fullname);
$desc->setClass($classname);
Expand Down

0 comments on commit c02ded7

Please sign in to comment.