Skip to content
This repository was archived by the owner on Dec 21, 2024. It is now read-only.

Commit 89c722f

Browse files
committed
replace JCResponse by JCResponseInterface
1 parent c428a46 commit 89c722f

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

src/JCFirebase.php

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
namespace JCFirebase;
1010

1111
use JC\JCRequest;
12-
use JC\JCResponse;
12+
use JC\JCResponseInterface;
1313
use JCFirebase\Enums\PrintType;
1414
use JCFirebase\Enums\RequestType;
1515

@@ -40,7 +40,6 @@ class JCFirebase
4040
*/
4141
public $auth;
4242

43-
4443
/**
4544
* JCFirebase constructor.
4645
*
@@ -134,7 +133,7 @@ public function getShallow($path = '', $options = array())
134133
* @param string $path
135134
* @param array $options
136135
*
137-
* @return JCResponse
136+
* @return JCResponseInterface
138137
*/
139138
public function get($path = '', $options = array())
140139
{
@@ -149,7 +148,7 @@ public function get($path = '', $options = array())
149148
* @param string $path
150149
* @param array $options
151150
*
152-
* @return JCResponse
151+
* @return JCResponseInterface
153152
*/
154153
public function put($path = '', $options = array())
155154
{
@@ -163,7 +162,7 @@ public function put($path = '', $options = array())
163162
* @param string $path
164163
* @param array $options
165164
*
166-
* @return JCResponse
165+
* @return JCResponseInterface
167166
*/
168167
public function post($path = '', $options = array())
169168
{
@@ -178,7 +177,7 @@ public function post($path = '', $options = array())
178177
* @param string $path
179178
* @param array $options
180179
*
181-
* @return JCResponse
180+
* @return JCResponseInterface
182181
*/
183182
public function patch($path = '', $options = array())
184183
{
@@ -193,7 +192,7 @@ public function patch($path = '', $options = array())
193192
* @param string $path
194193
* @param array $options
195194
*
196-
* @return JCResponse
195+
* @return JCResponseInterface
197196
*/
198197
public function delete($path = '', $options = array())
199198
{

0 commit comments

Comments
 (0)