issue #1575 PHP 8 compatibility, check for object type

* by using $response instanceof PwgError instead of get_class()
This commit is contained in:
Eike Rathke
2022-07-21 17:27:37 +02:00
committed by GitHub
parent 8fbc17c392
commit 8889f7ffef
4 changed files with 4 additions and 6 deletions

View File

@@ -10,8 +10,7 @@ class PwgSerialPhpEncoder extends PwgResponseEncoder
{
function encodeResponse($response)
{
$respClass = strtolower( @get_class($response) );
if ($respClass=='pwgerror')
if ($response instanceof PwgError)
{
return serialize(
array(