Skip to content

Commit 6321d03

Browse files
committed
Add missing dots at the end of exception messages
1 parent 6b2a959 commit 6321d03

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

AbstractBrowser.php

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

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

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

0 commit comments

Comments
 (0)