aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/nestedset/base.php
diff options
context:
space:
mode:
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 = '';