File "MemoryProcessor.php"

Full Path: /home/warrior1/public_html/plugins/mailpoet/vendor-prefixed/monolog/monolog/src/Monolog/Processor/MemoryProcessor.php
File size: 656 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
declare (strict_types=1);
namespace MailPoetVendor\Monolog\Processor;
if (!defined('ABSPATH')) exit;
abstract class MemoryProcessor implements ProcessorInterface
{
 protected $realUsage;
 protected $useFormatting;
 public function __construct(bool $realUsage = \true, bool $useFormatting = \true)
 {
 $this->realUsage = $realUsage;
 $this->useFormatting = $useFormatting;
 }
 protected function formatBytes(int $bytes)
 {
 if (!$this->useFormatting) {
 return $bytes;
 }
 if ($bytes > 1024 * 1024) {
 return \round($bytes / 1024 / 1024, 2) . ' MB';
 } elseif ($bytes > 1024) {
 return \round($bytes / 1024, 2) . ' KB';
 }
 return $bytes . ' B';
 }
}