mirror of
https://github.com/Seldaek/monolog.git
synced 2025-10-21 16:46:11 +02:00
CS fixes & upgrading cs fixer config
This commit is contained in:
@@ -19,18 +19,18 @@ namespace Monolog\Processor;
|
||||
abstract class MemoryProcessor
|
||||
{
|
||||
/**
|
||||
* @var boolean If true, get the real size of memory allocated from system. Else, only the memory used by emalloc() is reported.
|
||||
* @var bool If true, get the real size of memory allocated from system. Else, only the memory used by emalloc() is reported.
|
||||
*/
|
||||
protected $realUsage;
|
||||
|
||||
/**
|
||||
* @var boolean If true, then format memory size to human readable string (MB, KB, B depending on size)
|
||||
* @var bool If true, then format memory size to human readable string (MB, KB, B depending on size)
|
||||
*/
|
||||
protected $useFormatting;
|
||||
|
||||
/**
|
||||
* @param boolean $realUsage Set this to true to get the real size of memory allocated from system.
|
||||
* @param boolean $useFormatting If true, then format memory size to human readable string (MB, KB, B depending on size)
|
||||
* @param bool $realUsage Set this to true to get the real size of memory allocated from system.
|
||||
* @param bool $useFormatting If true, then format memory size to human readable string (MB, KB, B depending on size)
|
||||
*/
|
||||
public function __construct($realUsage = true, $useFormatting = true)
|
||||
{
|
||||
|
Reference in New Issue
Block a user