aboutsummaryrefslogtreecommitdiff
path: root/www/text.php
diff options
context:
space:
mode:
authorChristian Weiske <cweiske@cweiske.de>2014-03-20 17:03:06 +0100
committerChristian Weiske <cweiske@cweiske.de>2014-03-20 17:03:06 +0100
commit6032c11d7a88651d85154ffe835a26b3f569c893 (patch)
treeb3cb83cb8d7dbcfa23891b84e3f0447c31e743c8 /www/text.php
parent62842c0ba16bb1dc67435dea7b4d75af7773eacb (diff)
downloadbdrem-6032c11d7a88651d85154ffe835a26b3f569c893.tar.gz
bdrem-6032c11d7a88651d85154ffe835a26b3f569c893.zip
add docblocks to all files, classes, methods and variables
Diffstat (limited to 'www/text.php')
-rw-r--r--www/text.php14
1 files changed, 13 insertions, 1 deletions
diff --git a/www/text.php b/www/text.php
index ffe530a..d2ff095 100644
--- a/www/text.php
+++ b/www/text.php
@@ -1,8 +1,20 @@
<?php
+/**
+ * Start the bdrem plain text web interface
+ *
+ * PHP version 5
+ *
+ * @category Tools
+ * @package Bdrem
+ * @author Christian Weiske <cweiske@cweiske.de>
+ * @copyright 2014 Christian Weiske
+ * @license http://www.gnu.org/licenses/agpl.html GNU AGPL v3
+ * @link http://cweiske.de/bdrem.htm
+ */
namespace bdrem;
if (file_exists(__DIR__ . '/../src/bdrem/Autoloader.php')) {
- require_once __DIR__ . '/../src/bdrem/Autoloader.php';
+ include_once __DIR__ . '/../src/bdrem/Autoloader.php';
Autoloader::register();
}
$web = new WebText();