Old Packages

This commit is contained in:
Your Name
2021-07-26 19:48:58 +02:00
parent aae17f10a6
commit fd19e442b6
182 changed files with 2115 additions and 19161 deletions
+18
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';
}