summaryrefslogtreecommitdiff
path: root/server/doc/files/core/CoreInterface.php.txt
diff options
context:
space:
mode:
authorroot <root@serverpc.home>2016-05-04 19:46:53 +0200
committerroot <root@serverpc.home>2016-05-04 19:46:53 +0200
commit4b978d4584994536f05b016fb65de9a8667bcb2d (patch)
tree5f45e5b0cfcd74058c7de57afe0646cd253672f3 /server/doc/files/core/CoreInterface.php.txt
parent0266c16ffc97042853916c390aaaccecc72e69a1 (diff)
parenta0056da90605f2fb4c2479cae310f12a81a9a3e7 (diff)
Merge branch 'master' into loic
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);
+
+}