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:
@@ -80,11 +80,11 @@ class SocketHandler extends AbstractProcessingHandler
|
|||||||
/**
|
/**
|
||||||
* Set socket connection to nbe persistent. It only has effect before the connection is initiated.
|
* 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;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Reference in New Issue
Block a user