@@ -60,7 +60,7 @@ |
||
| 60 | 60 | return static::fromJson($jsonString, $lifeTime); |
| 61 | 61 | } |
| 62 | 62 | |
| 63 | - public static function getClient(){ |
|
| 63 | + public static function getClient() { |
|
| 64 | 64 | return Client::getClient(); |
| 65 | 65 | } |
| 66 | 66 | |
@@ -104,7 +104,7 @@ discard block |
||
| 104 | 104 | throw new \Exception("firebase default path must contain /"); |
| 105 | 105 | } |
| 106 | 106 | |
| 107 | - $pathURI = $this->firebaseURI . $this->rootPath . $path . ".json"; |
|
| 107 | + $pathURI = $this->firebaseURI.$this->rootPath.$path.".json"; |
|
| 108 | 108 | |
| 109 | 109 | //set query data |
| 110 | 110 | $queryData = array(); |
@@ -112,7 +112,7 @@ discard block |
||
| 112 | 112 | $queryData[Option::OPT_PRINT] = $print; |
| 113 | 113 | } |
| 114 | 114 | if (!empty($queryData)) { |
| 115 | - $pathURI = $pathURI . '?' . http_build_query($queryData); |
|
| 115 | + $pathURI = $pathURI.'?'.http_build_query($queryData); |
|
| 116 | 116 | } |
| 117 | 117 | |
| 118 | 118 | $this->refreshToken(); |
@@ -123,7 +123,7 @@ discard block |
||
| 123 | 123 | public function getShallow($path = '', $options = array()) |
| 124 | 124 | { |
| 125 | 125 | return $this->client->get( |
| 126 | - $this->getPathURI($path) . '?' . http_build_query(array( |
|
| 126 | + $this->getPathURI($path).'?'.http_build_query(array( |
|
| 127 | 127 | Option::OPT_SHALLOW => 'true' |
| 128 | 128 | )), |
| 129 | 129 | $this->addDataToRequest($options), |
@@ -220,7 +220,7 @@ discard block |
||
| 220 | 220 | |
| 221 | 221 | protected function refreshToken() |
| 222 | 222 | { |
| 223 | - $this->requestHeader['Authorization'] = 'Bearer ' . $this->auth->getAccessToken(); |
|
| 223 | + $this->requestHeader['Authorization'] = 'Bearer '.$this->auth->getAccessToken(); |
|
| 224 | 224 | } |
| 225 | 225 | |
| 226 | 226 | protected function addDataToPathURI($path = '', $options = array(), $reqType = RequestType::GET) |