🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-19 14:11:13 | PHP 8.1.34
📂
/ (Root)
/
home
/
therahul
/
thedasstores.com
/
wp-content
/
plugins
/
google-listings-and-ads
/
src
/
View
📍 /home/therahul/thedasstores.com/wp-content/plugins/google-listings-and-ads/src/View
🔄 Refresh
✏️
Editing: PHPViewFactory.php
Writable
<?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 ); } }
💾 Save Changes
❌ Cancel