Increase PHPStan levels and update code to resolve issues found

This commit is contained in:
SignpostMarv
2018-01-27 19:45:35 +00:00
committed by Ben Ramsey
parent a2ba41740c
commit 0030399564
26 changed files with 82 additions and 84 deletions
+1 -1
View File
@@ -66,7 +66,7 @@ class StringCodec implements CodecInterface
*/
public function encodeBinary(UuidInterface $uuid)
{
return hex2bin($uuid->getHex());
return (string) hex2bin($uuid->getHex());
}
/**