summaryrefslogtreecommitdiff
path: root/server/core/CoreInterface.php
blob: 8bcfad416a3c9c40e555ee07e9156fb289e79028 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
/**
* File containing Core Interface.
* 
*/

/**
* Interface for the main classes of the API
*
* @version 1.0 Initialisation of this file
* @since 1.0 Core application's file
* 
* @author Eole 'eoledev at outlook . fr'
*/
interface Core{
	
	/**
	* Execute an action in the class
	*
	* @param String $action Function to be called
	*
	* @return void
	*/
	public function action($action);
	
}