PATH:
home
/
thebhoeo
/
.trash
/
wpforms-lite-pro
/
vendor_prefixed
/
apimatic
/
core
/
src
/
TestCase
/
BodyMatchers
<?php declare (strict_types=1); namespace WPForms\Vendor\Core\TestCase\BodyMatchers; class KeysAndValuesBodyMatcher extends KeysBodyMatcher { /** * Initializes a new KeysAndValuesBodyMatcher object with the parameters provided. */ public static function init($expectedBody, bool $matchArrayOrder = \false, bool $matchArrayCount = \false) : KeysBodyMatcher { $matcher = new self(new BodyComparator(!$matchArrayCount, $matchArrayOrder, \true), $expectedBody); $matcher->defaultMessage = 'Response body does not match in keys and/or values'; return $matcher; } }
[-] KeysAndValuesBodyMatcher.php
[edit]
[+]
..
[-] BodyComparator.php
[edit]
[-] BodyMatcher.php
[edit]
[-] KeysBodyMatcher.php
[edit]
[-] NativeBodyMatcher.php
[edit]
[-] RawBodyMatcher.php
[edit]