[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

@ -23,18 +23,18 @@ abstract class phpbb_nestedset_base implements phpbb_nestedset_interface
/** @var phpbb_lock_db */ /** @var phpbb_lock_db */
protected $lock; protected $lock;
/** @var String */ /** @var string */
protected $table_name; protected $table_name;
/** /**
* Prefix for the language keys returned by exceptions * Prefix for the language keys returned by exceptions
* @var String * @var string
*/ */
protected $message_prefix = ''; protected $message_prefix = '';
/** /**
* Column names in the table * Column names in the table
* @var String * @var string
*/ */
protected $column_item_id = 'item_id'; protected $column_item_id = 'item_id';
protected $column_left_id = 'left_id'; protected $column_left_id = 'left_id';
@ -45,7 +45,7 @@ abstract class phpbb_nestedset_base implements phpbb_nestedset_interface
/** /**
* Additional SQL restrictions * Additional SQL restrictions
* Allows to have multiple nested sets in one table * Allows to have multiple nested sets in one table
* @var String * @var string
*/ */
protected $sql_where = ''; protected $sql_where = '';

View file

@ -19,14 +19,14 @@ class phpbb_nestedset_forum extends phpbb_nestedset_base
{ {
/** /**
* Column names in the table * Column names in the table
* @var String * @var string
*/ */
protected $column_item_id = 'forum_id'; protected $column_item_id = 'forum_id';
protected $column_item_parents = 'forum_parents'; protected $column_item_parents = 'forum_parents';
/** /**
* Prefix for the language keys returned by exceptions * Prefix for the language keys returned by exceptions
* @var String * @var string
*/ */
protected $message_prefix = 'FORUM_NESTEDSET_'; protected $message_prefix = 'FORUM_NESTEDSET_';