1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-11 07:34:12 +02:00

Added comments

This commit is contained in:
Hennadiy Verkh
2014-03-24 10:55:35 +01:00
parent 36f3d0e52f
commit 3fe02f7c21

View File

@@ -19,11 +19,13 @@ namespace Monolog\Processor;
abstract class MemoryProcessor
{
/**
* @var boolean Set this to true to get the real size of memory allocated from system.
* If not set or false only the memory used by emalloc() is reported.
* @var boolean 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)
*/
protected $useFormatting;
/**