Fixed phpstan issues

This commit is contained in:
Alejandro Celaya 2018-07-04 20:28:05 +02:00
parent 87c4851d7e
commit c79ca1d13c
2 changed files with 2 additions and 1 deletions

View file

@ -26,7 +26,7 @@ class PixelResponse extends Response
private function createBody(): StreamInterface
{
$body = new Stream('php://temp', 'wb+');
$body->write(\base64_decode(self::BASE_64_IMAGE));
$body->write((string) \base64_decode(self::BASE_64_IMAGE));
$body->rewind();
return $body;
}

View file

@ -4,3 +4,4 @@ parameters:
- module/Rest/src/Util/RestUtils.php
ignoreErrors:
- '#is not subtype of Throwable#'
- '#Cannot access offset#'