Total Complexity | 1 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | trait AssertNoContent |
||
13 | { |
||
14 | /** |
||
15 | * Asserts that a response is a valid "204 No Content" response. |
||
16 | * |
||
17 | * @param TestResponse $response |
||
18 | * |
||
19 | * @return void |
||
20 | * @throws \PHPUnit\Framework\AssertionFailedError |
||
21 | */ |
||
22 | 18 | public static function assertIsNoContentResponse(TestResponse $response) |
|
33 |