403Webshell
Server IP : 172.67.158.161  /  Your IP : 3.12.36.65
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/ValidatorFactory.php
<?php // phpcs:ignore SlevomatCodingStandard.TypeHints.DeclareStrictTypes.DeclareStrictTypesMissing

namespace MailPoet\Doctrine\Validator;

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


use MailPoet\Doctrine\Annotations\AnnotationReaderProvider;
use MailPoet\Doctrine\PSRMetadataCache;
use MailPoetVendor\Symfony\Component\Validator\Validation;

class ValidatorFactory {
  const METADATA_DIR = __DIR__ . '/../../../generated/validator-metadata';

  /** @var AnnotationReaderProvider */
  private $annotationReaderProvider;

  public function __construct(
    AnnotationReaderProvider $annotationReaderProvider
  ) {
    $this->annotationReaderProvider = $annotationReaderProvider;
  }

  public function createValidator() {
    $builder = Validation::createValidatorBuilder();
    // we need to use our own translator here.
    // If we let the default translator to be used in the builder it uses an anonymous class and that is a problem
    // All integration tests would fail with: [Exception] Serialization of 'class@anonymous' is not allowed
    $translator = new Translator();
    $translator->setLocale('en');
    $builder->setTranslator($translator);

    // annotation reader exists only in dev environment, on production cache is pre-generated
    $annotationReader = $this->annotationReaderProvider->getAnnotationReader();
    if ($annotationReader) {
      $builder->setDoctrineAnnotationReader($annotationReader)
        ->enableAnnotationMapping(true);
    }

    // metadata cache (for production cache is pre-generated at build time)
    $isReadOnly = !$annotationReader;
    $builder->setMappingCache(new PSRMetadataCache(self::METADATA_DIR, $isReadOnly));

    return $builder->getValidator();
  }
}

Youez - 2016 - github.com/yon3zu
LinuXploit