mirror of
https://github.com/vrana/adminer.git
synced 2025-08-05 14:17:26 +02:00
Notices: Declare Adminer::$error
This commit is contained in:
@@ -4,8 +4,8 @@ namespace Adminer;
|
||||
// any method change in this file should be transferred to editor/include/adminer.inc.php and plugins/plugin.php
|
||||
|
||||
class Adminer {
|
||||
/** @var array operators used in select, null for all operators */
|
||||
public $operators;
|
||||
public $operators; ///< @var array operators used in select, null for all operators
|
||||
public $error = ''; ///< @var protected(set) string HTML
|
||||
|
||||
/** Name in title and navigation
|
||||
* @return string HTML code
|
||||
|
@@ -3,7 +3,6 @@ namespace Adminer;
|
||||
|
||||
class Plugins extends Adminer {
|
||||
public $plugins; ///< @var protected(set) array
|
||||
public $error = ''; ///< @var protected(set) string HTML
|
||||
|
||||
/** Register plugins
|
||||
* @param array object instances or null to autoload plugins from adminer-plugins/
|
||||
|
@@ -3,6 +3,7 @@ namespace Adminer;
|
||||
|
||||
class Adminer {
|
||||
public $operators = array("<=", ">=");
|
||||
public $error = '';
|
||||
private $values = array();
|
||||
|
||||
function name() {
|
||||
|
Reference in New Issue
Block a user