![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mautic.corals.io/vendor/litesaml/lightsaml/src/Validator/Model/Xsd/ |
<?php namespace LightSaml\Validator\Model\Xsd; class XsdError { public const WARNING = 'Warning'; public const ERROR = 'Error'; public const FATAL = 'Fatal'; private static $levelMap = [ LIBXML_ERR_WARNING => self::WARNING, LIBXML_ERR_ERROR => self::ERROR, LIBXML_ERR_FATAL => self::FATAL, ]; /** @var string */ private $level; /** @var string */ private $code; /** @var string */ private $message; /** @var string */ private $line; /** @var string */ private $column; /** * @return XsdError */ public static function fromLibXMLError(\LibXMLError $error) { return new self( isset(self::$levelMap[$error->level]) ? self::$levelMap[$error->level] : 'Unknown', $error->code, $error->message, $error->line, $error->column ); } /** * @param string $level * @param string $code * @param string $message * @param string $line * @param string $column */ public function __construct($level, $code, $message, $line, $column) { $this->level = $level; $this->code = $code; $this->message = $message; $this->line = $line; $this->column = $column; } /** * @return string */ public function getLevel() { return $this->level; } /** * @return string */ public function getCode() { return $this->code; } /** * @return string */ public function getMessage() { return $this->message; } /** * @return string */ public function getLine() { return $this->line; } /** * @return string */ public function getColumn() { return $this->column; } public function __toString() { return sprintf( '%s %s: %s on line %s column %s', $this->level, $this->code, trim($this->message), $this->line, $this->column ); } }