montée php8.1, ubuntu 22.04

This commit is contained in:
2022-04-07 14:35:36 +02:00
parent 12ededccc9
commit 08717e42d9
17 changed files with 419 additions and 22 deletions

18
vendor/psr/log/src/LogLevel.php vendored Normal file
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';
}