[Bridge] Change order of variable declaration

This commit is contained in:
logmanoriginal 2016-09-02 19:03:51 +02:00
parent 41d3aa0695
commit 4bc4e03d7b

View file

@ -111,17 +111,18 @@ 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 = '';
protected function returnError($message, $code){ protected function returnError($message, $code){
throw new \HttpException($message, $code); throw new \HttpException($message, $code);