1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-10-21 16:46:11 +02:00

More boolean=>bool

This commit is contained in:
Jordi Boggiano
2018-06-07 18:45:07 +02:00
parent 5f85e657f8
commit 8c4539f1fe
6 changed files with 70 additions and 70 deletions

View File

@@ -87,7 +87,7 @@ class SocketHandler extends AbstractProcessingHandler
*/
public function setPersistent($persistent)
{
$this->persistent = (boolean) $persistent;
$this->persistent = (bool) $persistent;
}
/**