blob: 38f038f1de093c8b4a457a76ff31bddf17d889fe (
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);
}
|