1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-04 20:27:31 +02:00

Merge pull request #605 from localheinz/fix/docblock

Fix: Type should be bool
This commit is contained in:
Jordi Boggiano
2015-07-14 10:27:59 +01:00

View File

@@ -80,11 +80,11 @@ class SocketHandler extends AbstractProcessingHandler
/**
* Set socket connection to nbe persistent. It only has effect before the connection is initiated.
*
* @param type $boolean
* @param boolean $persistent
*/
public function setPersistent($boolean)
public function setPersistent($persistent)
{
$this->persistent = (boolean) $boolean;
$this->persistent = (boolean) $persistent;
}
/**