wpml-tf-backend-bulk-actions-factory.php 398 Bytes
<?php

/**
 * Class WPML_TF_Backend_Bulk_Actions_Factory
 *
 * @author OnTheGoSystems
 */
class WPML_TF_Backend_Bulk_Actions_Factory {

	/**
	 * @return WPML_TF_Backend_Bulk_Actions
	 */
	public function create() {
		return new WPML_TF_Backend_Bulk_Actions(
			new WPML_TF_Data_Object_Storage( new WPML_TF_Feedback_Post_Convert() ),
			new WPML_WP_API(),
			new WPML_TF_Backend_Notices()
		);
	}
}