Upload MPDF files

This commit is contained in:
BuildTools 2019-11-02 22:41:54 +01:00
parent 9ac4bbce8a
commit b7b35ad35b
543 changed files with 111174 additions and 0 deletions

View file

@ -0,0 +1,18 @@
<?php
namespace Psr\Log;
/**
* Describes log levels.
*/
class LogLevel
{
const EMERGENCY = 'emergency';
const ALERT = 'alert';
const CRITICAL = 'critical';
const ERROR = 'error';
const WARNING = 'warning';
const NOTICE = 'notice';
const INFO = 'info';
const DEBUG = 'debug';
}