1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-09 06:36:46 +02:00

Type hints for browser console handler

This commit is contained in:
Jordi Boggiano
2018-11-04 16:40:21 +01:00
parent cd21d4fc59
commit 0bcaf7a34c

View File

@@ -94,10 +94,8 @@ class BrowserConsoleHandler extends AbstractProcessingHandler
/** /**
* Wrapper for echo to allow overriding * Wrapper for echo to allow overriding
*
* @param string $str
*/ */
protected static function writeOutput($str) protected static function writeOutput(string $str)
{ {
echo $str; echo $str;
} }