bbrothers /
Muzzle
| 1 | <?php |
||
| 2 | |||
| 3 | namespace Muzzle\Assertions; |
||
| 4 | |||
| 5 | use Muzzle\Messages\Transaction; |
||
| 6 | |||
| 7 | class HeadersMatch implements Assertion |
||
| 8 | { |
||
| 9 | |||
| 10 | public function assert(Transaction $actual, Transaction $expected) : void |
||
| 11 | { |
||
| 12 | |||
| 13 | foreach ($expected->request()->getHeaders() as $header => $value) { |
||
| 14 | $actual->request()->assertHeader($header, $value); |
||
|
0 ignored issues
–
show
Bug
introduced
by
Loading history...
|
|||
| 15 | } |
||
| 16 | } |
||
| 17 | } |
||
| 18 |