🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-16 11:04:58 | PHP 8.1.34
📂
/ (Root)
/
home
/
therahul
/
thedasstores.com
/
wp-content
/
plugins
/
google-listings-and-ads
/
src
📍 /home/therahul/thedasstores.com/wp-content/plugins/google-listings-and-ads/src
🔄 Refresh
✏️
Editing: PluginFactory.php
Writable
<?php declare( strict_types=1 ); namespace Automattic\WooCommerce\GoogleListingsAndAds; use Automattic\WooCommerce\GoogleListingsAndAds\Infrastructure\GoogleListingsAndAdsPlugin; /** * PluginFactory class. * * This is responsible for instantiating a Plugin object and returning the same object. * * @package Automattic\WooCommerce\GoogleListingsAndAds */ final class PluginFactory { /** * Get the instance of the Plugin object. * * @return GoogleListingsAndAdsPlugin */ public static function instance() { static $plugin = null; if ( null === $plugin ) { $plugin = new GoogleListingsAndAdsPlugin( woogle_get_container() ); } return $plugin; } }
💾 Save Changes
❌ Cancel