mirror of
https://github.com/Seldaek/monolog.git
synced 2025-08-04 12:17:35 +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.
|
||||
*
|
||||
* @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