DefaultLogger::__construct PHP Méthode

__construct() public méthode

Construct a new default logger.
public __construct ( )
    public function __construct()
    {
    }

Usage Example

 /**
  * Construct new HtmlColorLogger
  * Perform initializations that cannot be done in var declarations.
  */
 public function __construct()
 {
     parent::__construct();
     $this->errColor = self::PREFIX . self::CLASS_ERR . self::SUFFIX;
     $this->warnColor = self::PREFIX . self::CLASS_WARN . self::SUFFIX;
     $this->infoColor = self::PREFIX . self::CLASS_INFO . self::SUFFIX;
     $this->verboseColor = self::PREFIX . self::CLASS_VERBOSE . self::SUFFIX;
     $this->debugColor = self::PREFIX . self::CLASS_DEBUG . self::SUFFIX;
 }
All Usage Examples Of DefaultLogger::__construct