Your IP : 3.145.173.199


Current Path : /home/sudancam/public_html3/games/wp-content/plugins/mailpoet/lib/Config/
Upload File :
Current File : //home/sudancam/public_html3/games/wp-content/plugins/mailpoet/lib/Config/RendererFactory.php

<?php

namespace MailPoet\Config;

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


use MailPoetVendor\Twig\Loader\FilesystemLoader as TwigFileSystem;

class RendererFactory {

  /** @var Renderer|null */
  private $renderer;

  public function getRenderer() {
    if (!$this->renderer) {
      $debugging = WP_DEBUG;
      $autoReload = defined('MAILPOET_DEVELOPMENT') && MAILPOET_DEVELOPMENT;
      $this->renderer = new Renderer(
        $debugging,
        Env::$cachePath,
        new TwigFileSystem(Env::$viewsPath),
        $autoReload
      );
    }
    return $this->renderer;
  }
}