2016-02-05 00:07:31 +01:00
|
|
|
<?php
|
2016-04-26 20:42:31 +02:00
|
|
|
/**
|
2016-04-27 14:22:59 +02:00
|
|
|
* File containing Core Interface.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Interface for the main classes of the API
|
2016-04-26 20:42:31 +02:00
|
|
|
*
|
|
|
|
* @version 1.0 Initialisation of this file
|
|
|
|
* @since 1.0 Core application's file
|
|
|
|
*
|
|
|
|
* @author Eole 'eoledev at outlook . fr'
|
|
|
|
*/
|
2016-02-05 00:07:31 +01:00
|
|
|
interface Core{
|
|
|
|
|
2016-04-27 14:22:59 +02:00
|
|
|
/**
|
|
|
|
* Execute an action in the class
|
|
|
|
*
|
|
|
|
* @param String $action Function to be called
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2016-02-05 00:07:31 +01:00
|
|
|
public function action($action);
|
|
|
|
|
|
|
|
}
|