Fix proper types

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
Roeland Jago Douma
2018-02-22 10:22:11 +01:00
parent a229095af1
commit 0ee45d3d20
3 changed files with 12 additions and 4 deletions

View File

@@ -307,7 +307,7 @@ class RequestTest extends \Test\TestCase {
'method' => 'PUT',
'server' => [
'CONTENT_TYPE' => 'image/png',
'CONTENT_LENGTH' => strlen($data)
'CONTENT_LENGTH' => (string)strlen($data)
],
);