Skip to content

Commit 50aeb23

Browse files
committed
Code style fixes
1 parent af2f9f2 commit 50aeb23

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

src/Firebase.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,8 @@ public function delete($location)
108108
/**
109109
* Sends the request and returns the processed response data.
110110
*
111-
* @param string $location The location.
112-
* @param string $method The HTTP method.
111+
* @param string $location The location.
112+
* @param string $method The HTTP method.
113113
* @param array|null $data The data.
114114
*
115115
* @throws FirebaseException
@@ -160,7 +160,7 @@ private function send($location, $method, array $data = null)
160160
}
161161

162162
/**
163-
* @param ResponseInterface $response
163+
* @param ResponseInterface $response
164164
* @return array|void
165165
*/
166166
private function getResultFromResponse(ResponseInterface $response)

src/FirebaseInterface.php

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,27 +24,27 @@ public function get($location);
2424
/**
2525
* Write or replace data at the given location.
2626
*
27-
* @param array $data
28-
* @param string $location
29-
* @return array The returned data.
27+
* @param array $data
28+
* @param string $location
29+
* @return array The returned data.
3030
*/
3131
public function set(array $data, $location);
3232

3333
/**
3434
* Generates a new child and returns its key.
3535
*
36-
* @param array $data The data to be pushed.
37-
* @param string $location The location to push the new child to.
38-
* @return string The key of the new child.
36+
* @param array $data The data to be pushed.
37+
* @param string $location The location to push the new child to.
38+
* @return string The key of the new child.
3939
*/
4040
public function push(array $data, $location);
4141

4242
/**
4343
* Update the given field(s) at the given location.
4444
*
45-
* @param array $data The fields.
46-
* @param string $location The location.
47-
* @return array The written fields.
45+
* @param array $data The fields.
46+
* @param string $location The location.
47+
* @return array The written fields.
4848
*/
4949
public function update(array $data, $location);
5050

0 commit comments

Comments
 (0)