• File: interface.php
  • Full Path: /home/dealkatnwc/www/wp-content/plugins/types/application/controllers/api/handler/interface.php
  • Date Modified: 02/11/2019 2:36 PM
  • File size: 258 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

/**
 * Interface for handlers of hook API calls.
 */
interface Types_Api_Handler_Interface {
	
	function __construct();

	/**
	 * @param array $arguments Original action/filter arguments.
	 * @return mixed
	 */
	function process_call( $arguments );

}