Skip to content

Commit 4e9a171

Browse files
committed
Merge branch '3.4' into 4.4
* 3.4: Add missing dots at the end of exception messages
2 parents 090ce40 + 1c7bcd9 commit 4e9a171

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ protected function doRequestInProcess($request)
465465
}
466466

467467
if (!$process->isSuccessful() || !preg_match('/^O\:\d+\:/', $process->getOutput())) {
468-
throw new \RuntimeException(sprintf('OUTPUT: %s ERROR OUTPUT: %s', $process->getOutput(), $process->getErrorOutput()));
468+
throw new \RuntimeException(sprintf('OUTPUT: %s ERROR OUTPUT: %s.', $process->getOutput(), $process->getErrorOutput()));
469469
}
470470

471471
return unserialize($process->getOutput());

0 commit comments

Comments
 (0)