Add space between class name and concat message (#4577)

The class name was linked to the next word in the sentence.
"User\UserRequestis not found in descriptor pool."
pull/1429/merge
Petar Dambovaliev 7 years ago committed by Paul Yang
parent 306f4e3774
commit 0869b1a0a7
  1. 2
      php/src/Google/Protobuf/Internal/Message.php

@ -82,7 +82,7 @@ class Message
$pool = DescriptorPool::getGeneratedPool();
$this->desc = $pool->getDescriptorByClassName(get_class($this));
if (is_null($this->desc)) {
user_error(get_class($this) . "is not found in descriptor pool.");
user_error(get_class($this) . " is not found in descriptor pool.");
}
foreach ($this->desc->getField() as $field) {
$setter = $field->getSetter();

Loading…
Cancel
Save