1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-10-23 17:46:09 +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

@@ -34,8 +34,8 @@ abstract class MemoryProcessor
*/
public function __construct($realUsage = true, $useFormatting = true)
{
$this->realUsage = (boolean) $realUsage;
$this->useFormatting = (boolean) $useFormatting;
$this->realUsage = (bool) $realUsage;
$this->useFormatting = (bool) $useFormatting;
}
/**