• File: Factory.php
  • Full Path: /home/lef/public_html/wp-content/plugins/woocommerce-multilingual/compatibility/WooVariationsTable/Factory.php
  • File size: 318 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace WCML\Compatibility\WooVariationsTable;

use WCML\Compatibility\ComponentFactory;
use function WCML\functions\getSitePress;

class Factory extends ComponentFactory {

	/**
	 * @inheritDoc
	 */
	public function create() {
		return new \WCML_Woo_Var_Table( getSitePress()->get_current_language() );
	}
}