From 4bc4e03d7b7f552337ced9d2c8760246028b39ed Mon Sep 17 00:00:00 2001
From: logmanoriginal <logmanoriginal@users.noreply.github.com>
Date: Fri, 2 Sep 2016 19:03:51 +0200
Subject: [PATCH] [Bridge] Change order of variable declaration

---
 lib/Bridge.php | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/lib/Bridge.php b/lib/Bridge.php
index 3f4f5302..0f8ad1af 100644
--- a/lib/Bridge.php
+++ b/lib/Bridge.php
@@ -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);