From 92465af465886f14f22bb60dd974a93baa9c5322 Mon Sep 17 00:00:00 2001 From: Kevin J Hoerr Date: Wed, 21 Jun 2017 23:03:15 -0400 Subject: Add basic MVC structure with namespacing and PHPDOC (not tested) --- index.php | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 index.php (limited to 'index.php') diff --git a/index.php b/index.php new file mode 100644 index 0000000..3e770fe --- /dev/null +++ b/index.php @@ -0,0 +1,41 @@ +collect(); + + // Leak the data + echo $result; + } +} + +new Api(); + -- cgit