From 0869b1a0a7455dab94981aa29b8bfb69444fa13e Mon Sep 17 00:00:00 2001 From: Petar Dambovaliev Date: Mon, 30 Apr 2018 20:00:46 +0200 Subject: 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." --- php/src/Google/Protobuf/Internal/Message.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php/src/Google/Protobuf/Internal/Message.php b/php/src/Google/Protobuf/Internal/Message.php index 04ee1c34..3aff7bd6 100644 --- a/php/src/Google/Protobuf/Internal/Message.php +++ b/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(); -- cgit v1.2.3