File "BuiltInExporters.php"
Full Path: /home/romayxjt/public_html/wp-content/plugins/woocommerce/packages/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(),
);
}
}