Skip to content

Commit

Permalink
Add missing dots at the end of exception messages
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Mar 15, 2020
1 parent 6b2a959 commit 6321d03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AbstractBrowser.php
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down

0 comments on commit 6321d03

Please sign in to comment.