mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-26 11:58:53 +00:00
[ticket/11495] Fix Spacing and lowercase on docs
PHPBB3-11495
This commit is contained in:
parent
5cb7342dd3
commit
f3ff8b36be
2 changed files with 7 additions and 7 deletions
|
@ -17,24 +17,24 @@ if (!defined('IN_PHPBB'))
|
||||||
|
|
||||||
abstract class phpbb_nestedset_base implements phpbb_nestedset_interface
|
abstract class phpbb_nestedset_base implements phpbb_nestedset_interface
|
||||||
{
|
{
|
||||||
/** @var phpbb_db_driver*/
|
/** @var phpbb_db_driver */
|
||||||
protected $db;
|
protected $db;
|
||||||
|
|
||||||
/** @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 = '';
|
||||||
|
|
||||||
|
|
|
@ -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_';
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue