mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-16 04:57:15 +01:00
21 lines
416 B
PHP
21 lines
416 B
PHP
|
<?php
|
||
|
|
||
|
namespace Xentral\Components\Mailer\Wrapper;
|
||
|
|
||
|
class MemoryLogger
|
||
|
{
|
||
|
public $logmessages = [];
|
||
|
|
||
|
/**
|
||
|
* @param string $message
|
||
|
* @param string $dump
|
||
|
* @param string $module
|
||
|
* @param string $action
|
||
|
* @param string $function
|
||
|
*/
|
||
|
public function LogFile($message, $dump = '', $module = '', $action = '', $function = '')
|
||
|
{
|
||
|
$this->logmessages[] = $message;
|
||
|
}
|
||
|
}
|