REDROOM
PHP 8.2.31
Path:
Logout
Edit File
Size: 1.67 KB
Close
/home/nshryvcy/himaltourism.com/wp-content/plugins/mailpoet/lib/Doctrine/Validator/ValidatorFactory.php
Text
Base64
<?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(); } }
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 0 × Files: 4
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
index.php
0 B
lrw-r--r--
2023-04-04 05:35:40
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Translator.php
556 B
lrw-r--r--
2023-04-04 05:35:40
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
ValidationException.php
1.54 KB
lrw-r--r--
2023-04-04 05:35:40
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
ValidatorFactory.php
1.67 KB
lrw-r--r--
2023-04-04 05:35:40
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Zip Selected
If ZipArchive is unavailable, a
.tar
will be created (no compression).