File: /var/www/vhosts/uyarreklam.com.tr/httpdocs/ViewFactory.php.tar
httpdocs/wp-content/plugins/google-listings-and-ads/src/Infrastructure/ViewFactory.php 0000644 00000000721 15154671170 0033617 0 ustar 00 var/www/vhosts/uyarreklam.com.tr <?php
declare( strict_types=1 );
namespace Automattic\WooCommerce\GoogleListingsAndAds\Infrastructure;
defined( 'ABSPATH' ) || exit;
/**
* Interface ViewFactory
*
* @package Automattic\WooCommerce\GoogleListingsAndAds\Infrastructure
*/
interface ViewFactory {
/**
* Create a new view object.
*
* @param string $path Path to the view file to render.
*
* @return View Instantiated view object.
*/
public function create( string $path ): View;
}