1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-11-27 07:14:39 +01:00

Add EventHandlerIssue class

This commit is contained in:
Daniil Gentili 2023-07-16 14:44:49 +02:00
parent d3429cb4a4
commit d181a234ba
Signed by: danog
GPG Key ID: 8C1BE3B34B230CA7

50
src/EventHandlerIssue.php Normal file
View File

@ -0,0 +1,50 @@
<?php
declare(strict_types=1);
namespace danog\MadelineProto;
/**
* Represents an event handler issue.
*/
final class EventHandlerIssue
{
public function __construct(
/** Issue message */
public readonly string $message,
/** Issue file */
public readonly string $file,
/** Issue line */
public readonly int $line,
/** Whether the issue is severe enough to block inclusion */
public readonly bool $severe,
) {
}
public function __toString(): string
{
return \sprintf(
Lang::$current_lang[$this->severe ? 'static_analysis_severe' : 'static_analysis_minor'],
"{$this->file}:{$this->line}",
$this->message
);
}
public function log(): void
{
Logger::log((string) $this, Logger::FATAL_ERROR);
}
public function getHTML(): string
{
$issueStr = \htmlentities((string) $this);
$color = $this->severe ? 'red' : 'yellow';
$warning = "<h2 style='color:$color;'>{$issueStr}</h2>";
return $warning;
}
public function throw(): void
{
throw new Exception(message: (string) $this, file: $this->file, line: $this->line);
}
}