1
0
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:
Jakub Vrana
2025-03-24 06:17:38 +01:00
parent 9b84908b99
commit 8cec1bd611
3 changed files with 3 additions and 3 deletions

View File

@@ -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

View File

@@ -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/

View File

@@ -3,6 +3,7 @@ namespace Adminer;
class Adminer {
public $operators = array("<=", ">=");
public $error = '';
private $values = array();
function name() {