[Bridge] Change order of variable declaration
This commit is contained in:
parent
41d3aa0695
commit
4bc4e03d7b
1 changed files with 5 additions and 4 deletions
|
@ -111,15 +111,16 @@ interface BridgeInterface {
|
||||||
|
|
||||||
abstract class BridgeAbstract implements BridgeInterface {
|
abstract class BridgeAbstract implements BridgeInterface {
|
||||||
|
|
||||||
protected $cache;
|
|
||||||
protected $items = array();
|
|
||||||
|
|
||||||
const NAME = 'Unnamed bridge';
|
const NAME = 'Unnamed bridge';
|
||||||
const URI = '';
|
const URI = '';
|
||||||
const DESCRIPTION = 'No description provided';
|
const DESCRIPTION = 'No description provided';
|
||||||
const MAINTAINER = 'No maintainer';
|
const MAINTAINER = 'No maintainer';
|
||||||
const PARAMETERS = array();
|
const PARAMETERS = array();
|
||||||
|
|
||||||
public $useProxy = true;
|
public $useProxy = true;
|
||||||
|
|
||||||
|
protected $cache;
|
||||||
|
protected $items = array();
|
||||||
protected $inputs = array();
|
protected $inputs = array();
|
||||||
protected $queriedContext = '';
|
protected $queriedContext = '';
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue