Skip to content

Commit a435017

Browse files
committed
Coding standards improvements
1 parent b4901ae commit a435017

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/PHPCouchDB/Database.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -249,8 +249,9 @@ protected function handleServerResponse($response) : array
249249
* @param mixed $value The value to use
250250
* @return A string either "true" or "false"
251251
*/
252-
protected function boolToString($value) {
253-
if($value) {
252+
protected function boolToString($value)
253+
{
254+
if ($value) {
254255
return "true";
255256
} else {
256257
return "false";

0 commit comments

Comments
 (0)