1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-10 07:06:40 +02:00

Enhancement: Rename parameter

This commit is contained in:
Andreas Möller
2015-07-13 22:10:37 -04:00
parent a88d24ef45
commit 462ffe495a

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 boolean $boolean
* @param boolean $persistent
*/
public function setPersistent($boolean)
public function setPersistent($persistent)
{
$this->persistent = (boolean) $boolean;
$this->persistent = (boolean) $persistent;
}
/**