File "PHPViewFactory.php"

Full Path: /home/warrior1/public_html/plugins/google-listings-and-ads/src/View/PHPViewFactory.php
File size: 816 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
declare( strict_types=1 );

namespace Automattic\WooCommerce\GoogleListingsAndAds\View;

use Automattic\WooCommerce\GoogleListingsAndAds\Infrastructure\Service;
use Automattic\WooCommerce\GoogleListingsAndAds\Infrastructure\View;
use Automattic\WooCommerce\GoogleListingsAndAds\Infrastructure\ViewFactory;

defined( 'ABSPATH' ) || exit;

/**
 * Class PHPViewFactory
 *
 * @package Automattic\WooCommerce\GoogleListingsAndAds\View
 */
final class PHPViewFactory implements Service, ViewFactory {

	/**
	 * Create a new view object.
	 *
	 * @param string $path Path to the view file to render.
	 *
	 * @return View Instantiated view object.
	 *
	 * @throws ViewException If an invalid path was passed into the View.
	 */
	public function create( string $path ): View {
		return new PHPView( $path, $this );
	}
}