Skip to content

Commit 1c7bcd9

Browse files
committed
Add missing dots at the end of exception messages
1 parent ede0c5f commit 1c7bcd9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Client.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ protected function doRequestInProcess($request)
370370
}
371371

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

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

0 commit comments

Comments
 (0)