Commit 0869b1a0 authored by Petar Dambovaliev's avatar Petar Dambovaliev Committed by Paul Yang

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."
parent 306f4e37
......@@ -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();
......
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