mirror of
https://github.com/appwrite/appwrite
synced 2026-05-23 08:58:35 +00:00
Make code verbose
This commit is contained in:
parent
d43039387e
commit
57bd180fd4
1 changed files with 5 additions and 1 deletions
|
|
@ -136,7 +136,11 @@ class BodyMultipart
|
|||
}
|
||||
|
||||
$query .= $eol . $eol;
|
||||
$query .= $value === false ? 0 . $eol : $value . $eol;
|
||||
if ($value === false) {
|
||||
$query .= 0 . $eol;
|
||||
} else {
|
||||
$query .= $value . $eol;
|
||||
}
|
||||
$query .= '--' . $this->boundary;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue