Small fixes

This commit is contained in:
RainLoop Team 2014-07-30 15:57:38 +04:00
parent 7348b9b8a4
commit 58d8e92902
6 changed files with 111 additions and 46 deletions

View file

@ -0,0 +1,30 @@
<?php
namespace MailSo;
/**
* @category MailSo
* @package Base
*/
class Config
{
/**
* @var bool
*/
public static $ICONV = true;
/**
* @var bool
*/
public static $MBSTRING = true;
/**
* @var bool
*/
public static $FixIconvByMbstring = true;
/**
* @var \MailSo\Log\Logger
*/
public static $SystemLogger = null;
}