File "BuiltInExporters.php"

Full Path: /home/amervokv/ecomlive.net/wp-content/plugins/woocommerce/vendor/woocommerce/blueprint/src/BuiltInExporters.php
File size: 474 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Automattic\WooCommerce\Blueprint;

use Automattic\WooCommerce\Blueprint\Exporters\ExportInstallPluginSteps;
use Automattic\WooCommerce\Blueprint\Exporters\ExportInstallThemeSteps;

/**
 * Built-in exporters.
 */
class BuiltInExporters {
	/**
	 * Get all built-in exporters.
	 *
	 * @return array List of all built-in exporters.
	 */
	public function get_all() {
		return array(
			new ExportInstallPluginSteps(),
			new ExportInstallThemeSteps(),
		);
	}
}