[ticket/11495] Fix Spacing and lowercase on docs

PHPBB3-11495
This commit is contained in:
Joas Schilling 2013-04-19 01:14:38 +02:00
parent 5cb7342dd3
commit f3ff8b36be
2 changed files with 7 additions and 7 deletions

View file

@ -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 = '';

View file

@ -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_';