Make phan happy

Signed-off-by: Marc Delisle <marc@infomarc.info>
This commit is contained in:
Marc Delisle 2015-07-27 10:14:22 -04:00
parent 9f464fd861
commit 07071a169b
2 changed files with 13 additions and 13 deletions

View File

@ -42,28 +42,28 @@ class PMA_NavigationTree
private $_pos;
/**
* @var int The names of the type of items that are being paginated on
* the second level of the navigation tree. These may be
* tables, views, functions, procedures or events.
* @var array The names of the type of items that are being paginated on
* the second level of the navigation tree. These may be
* tables, views, functions, procedures or events.
*/
private $_pos2_name = array();
/**
* @var int The positions of nodes in the lists of tables, views,
* routines or events used for pagination
* @var array The positions of nodes in the lists of tables, views,
* routines or events used for pagination
*/
private $_pos2_value = array();
/**
* @var int The names of the type of items that are being paginated
* on the second level of the navigation tree.
* These may be columns or indexes
* @var array The names of the type of items that are being paginated
* on the second level of the navigation tree.
* These may be columns or indexes
*/
private $_pos3_name = array();
/**
* @var int The positions of nodes in the lists of columns or indexes
* used for pagination
* @var array The positions of nodes in the lists of columns or indexes
* used for pagination
*/
private $_pos3_value = array();
@ -82,8 +82,8 @@ class PMA_NavigationTree
private $_searchClause2 = '';
/**
* @var string Whether a warning was raised for large item groups
* which can affect performance.
* @var bool Whether a warning was raised for large item groups
* which can affect performance.
*/
private $_largeGroupWarning = false;

View File

@ -101,7 +101,7 @@ class Node
public $classes = '';
/**
* @var string Whether this node is a link for creating new objects
* @var bool Whether this node is a link for creating new objects
*/
public $isNew = false;