[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,17 +111,18 @@ interface BridgeInterface {
|
|||
|
||||
abstract class BridgeAbstract implements BridgeInterface {
|
||||
|
||||
protected $cache;
|
||||
protected $items = array();
|
||||
|
||||
const NAME = 'Unnamed bridge';
|
||||
const URI = '';
|
||||
const DESCRIPTION = 'No description provided';
|
||||
const MAINTAINER = 'No maintainer';
|
||||
const PARAMETERS = array();
|
||||
|
||||
public $useProxy = true;
|
||||
|
||||
protected $cache;
|
||||
protected $items = array();
|
||||
protected $inputs = array();
|
||||
protected $queriedContext='';
|
||||
protected $queriedContext = '';
|
||||
|
||||
protected function returnError($message, $code){
|
||||
throw new \HttpException($message, $code);
|
||||
|
|
Loading…
Reference in a new issue