Skip to content

Commit ca5301d

Browse files
committed
Merge branch '5.0'
* 5.0: Add missing dots at the end of exception messages Add missing dots at the end of exception messages [DI][Form] Fixed test suite (TimeType changes & unresolved merge conflict) Fix bad merge Add missing dots at the end of exception messages
2 parents 2b65d57 + 6321d03 commit ca5301d

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)