From 6321d03ccfcbee5bc74fef52d74c3f5356696d3d Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Sun, 15 Mar 2020 15:37:05 +0100 Subject: [PATCH] Add missing dots at the end of exception messages --- AbstractBrowser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AbstractBrowser.php b/AbstractBrowser.php index de85599f..dbd6051c 100644 --- a/AbstractBrowser.php +++ b/AbstractBrowser.php @@ -451,7 +451,7 @@ protected function doRequestInProcess($request) } if (!$process->isSuccessful() || !preg_match('/^O\:\d+\:/', $process->getOutput())) { - throw new \RuntimeException(sprintf('OUTPUT: %s ERROR OUTPUT: %s', $process->getOutput(), $process->getErrorOutput())); + throw new \RuntimeException(sprintf('OUTPUT: %s ERROR OUTPUT: %s.', $process->getOutput(), $process->getErrorOutput())); } return unserialize($process->getOutput());