PHP 8.2.31
Preview: AnnotationReaderProvider.php Size: 1.22 KB
/home/nshryvcy/himaltourism.com/wp-content/plugins/mailpoet/lib/Doctrine/Annotations/AnnotationReaderProvider.php

<?php // phpcs:ignore SlevomatCodingStandard.TypeHints.DeclareStrictTypes.DeclareStrictTypesMissing

namespace MailPoet\Doctrine\Annotations;

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


use MailPoet\Doctrine\PSRArrayCache;
use MailPoetVendor\Doctrine\Common\Annotations\AnnotationReader;
use MailPoetVendor\Doctrine\Common\Annotations\AnnotationRegistry;
use MailPoetVendor\Doctrine\Common\Annotations\PsrCachedReader;

class AnnotationReaderProvider {
  /** @var PsrCachedReader */
  private $annotationReader;

  public function __construct() {
    // register annotation reader if doctrine/annotations package is installed
    // (i.e. in dev environment, on production metadata is dumped in the build)
    $readAnnotations = class_exists(PsrCachedReader::class) && class_exists(AnnotationReader::class);
    if ($readAnnotations) {
      // autoload all annotation classes using registered loaders (Composer)
      // (needed for Symfony\Validator constraint annotations to be loaded)
      AnnotationRegistry::registerLoader('class_exists');
      $this->annotationReader = new PsrCachedReader(new AnnotationReader(), new PSRArrayCache());
    }
  }

  public function getAnnotationReader(): ?PsrCachedReader {
    return $this->annotationReader;
  }
}

Directory Contents

Dirs: 0 × Files: 2

Name Size Perms Modified Actions
1.22 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
0 B lrw-r--r-- 2023-04-04 05:35:40
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).