Skip to content

Commit

Permalink
Merge pull request #44 from RVXD/patch-1
Browse files Browse the repository at this point in the history
__serialize must return array 8.1
  • Loading branch information
wilr authored Sep 21, 2023
2 parents 32c3f39 + 6514b7f commit ce040e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ExpressionLanguage.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ function (array $variables, $arg0, $arg1) {
}

/**
* @return null
* @return array
*/
public function __serialize()
{
return null;
return [];
}

/**
Expand Down

0 comments on commit ce040e7

Please sign in to comment.