- WordPress core y plugins - Tema Twenty Twenty-Four configurado - Plugin allow-unfiltered-html.php simplificado - .gitignore configurado para excluir wp-config.php y uploads 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
19 lines
342 B
PHP
Executable File
19 lines
342 B
PHP
Executable File
<?php
|
|
|
|
namespace Google\Site_Kit_Dependencies\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';
|
|
}
|