aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2013-04-19 01:14:38 +0200
committerJoas Schilling <nickvergessen@gmx.de>2013-04-19 01:14:38 +0200
commitf3ff8b36be01bf6414268d9dca0500b6c7d4f47f (patch)
tree993cb9a7fd8799fd56a6ac2d8bb9ba5b81553a11
parent5cb7342dd3b7abd2366abbdb7c0ba11d3d27f922 (diff)
downloadforums-f3ff8b36be01bf6414268d9dca0500b6c7d4f47f.tar
forums-f3ff8b36be01bf6414268d9dca0500b6c7d4f47f.tar.gz
forums-f3ff8b36be01bf6414268d9dca0500b6c7d4f47f.tar.bz2
forums-f3ff8b36be01bf6414268d9dca0500b6c7d4f47f.tar.xz
forums-f3ff8b36be01bf6414268d9dca0500b6c7d4f47f.zip
[ticket/11495] Fix Spacing and lowercase on docs
PHPBB3-11495
-rw-r--r--phpBB/includes/nestedset/base.php10
-rw-r--r--phpBB/includes/nestedset/forum.php4
2 files changed, 7 insertions, 7 deletions
diff --git a/phpBB/includes/nestedset/base.php b/phpBB/includes/nestedset/base.php
index e36f45e689..3383fd90c4 100644
--- a/phpBB/includes/nestedset/base.php
+++ b/phpBB/includes/nestedset/base.php
@@ -17,24 +17,24 @@ if (!defined('IN_PHPBB'))
abstract class phpbb_nestedset_base implements phpbb_nestedset_interface
{
- /** @var phpbb_db_driver*/
+ /** @var phpbb_db_driver */
protected $db;
/** @var phpbb_lock_db */
protected $lock;
- /** @var String */
+ /** @var string */
protected $table_name;
/**
* Prefix for the language keys returned by exceptions
- * @var String
+ * @var string
*/
protected $message_prefix = '';
/**
* Column names in the table
- * @var String
+ * @var string
*/
protected $column_item_id = 'item_id';
protected $column_left_id = 'left_id';
@@ -45,7 +45,7 @@ abstract class phpbb_nestedset_base implements phpbb_nestedset_interface
/**
* Additional SQL restrictions
* Allows to have multiple nested sets in one table
- * @var String
+ * @var string
*/
protected $sql_where = '';
diff --git a/phpBB/includes/nestedset/forum.php b/phpBB/includes/nestedset/forum.php
index 54a26772d5..dbf0e70202 100644
--- a/phpBB/includes/nestedset/forum.php
+++ b/phpBB/includes/nestedset/forum.php
@@ -19,14 +19,14 @@ class phpbb_nestedset_forum extends phpbb_nestedset_base
{
/**
* Column names in the table
- * @var String
+ * @var string
*/
protected $column_item_id = 'forum_id';
protected $column_item_parents = 'forum_parents';
/**
* Prefix for the language keys returned by exceptions
- * @var String
+ * @var string
*/
protected $message_prefix = 'FORUM_NESTEDSET_';