aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/nestedset/base.php
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 /phpBB/includes/nestedset/base.php
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
Diffstat (limited to 'phpBB/includes/nestedset/base.php')
-rw-r--r--phpBB/includes/nestedset/base.php10
1 files changed, 5 insertions, 5 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 = '';