class-wpml-media-attachments-query-factory.php 319 Bytes
<?php

/**
 * Class WPML_Media_Attachments_Query_Factory
 */
class WPML_Media_Attachments_Query_Factory implements IWPML_Frontend_Action_Loader, IWPML_Backend_Action_Loader {

	/**
	 * @return IWPML_Action|WPML_Media_Attachments_Query
	 */
	public function create() {
		return new WPML_Media_Attachments_Query();
	}

}