Skip to content

Commit

Permalink
add test for multiple flags
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasVotruba committed Feb 6, 2022
1 parent 167df89 commit 5547fb8
Showing 1 changed file with 5 additions and 0 deletions.
Expand Up @@ -10,6 +10,11 @@ function ($mixed) {
assertType('mixed~stdClass', $value);
};

function ($mixed) {
$value = json_decode($mixed, null, 512, JSON_OBJECT_AS_ARRAY | JSON_BIGINT_AS_STRING);
assertType('mixed~stdClass', $value);
};

function ($mixed) {
$value = json_decode($mixed, null);
assertType('mixed', $value);
Expand Down

0 comments on commit 5547fb8

Please sign in to comment.