istic-openstack/server/core/CoreInterface.php
2016-04-27 14:22:59 +02:00

26 lines
No EOL
420 B
PHP
Executable file

<?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);
}