summaryrefslogtreecommitdiff
path: root/server/doc/files/core/CoreInterface.php.txt
diff options
context:
space:
mode:
authorEole <EoleDev@outlook.fr>2016-04-27 22:52:25 +0200
committerEole <EoleDev@outlook.fr>2016-04-27 22:52:25 +0200
commitf4d12bf72a943d6a8965f21a11eefbb05d2a5483 (patch)
tree093d93a31fe998bf8c76829b79ed0ebd2eb43600 /server/doc/files/core/CoreInterface.php.txt
parent70cd5daaf18738776b0f9c45737cc6ab5579fff2 (diff)
Add Documentation
Diffstat (limited to 'server/doc/files/core/CoreInterface.php.txt')
-rw-r--r--server/doc/files/core/CoreInterface.php.txt26
1 files changed, 26 insertions, 0 deletions
diff --git a/server/doc/files/core/CoreInterface.php.txt b/server/doc/files/core/CoreInterface.php.txt
new file mode 100644
index 0000000..38f038f
--- /dev/null
+++ b/server/doc/files/core/CoreInterface.php.txt
@@ -0,0 +1,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);
+
+}