@@ -1082,10 +1082,10 @@ Mailer Assertions
1082
1082
Notifier Assertions
1083
1083
...................
1084
1084
1085
- ``assertNotificationCount(int $count, string $transportName = null, string $message = '') ``
1085
+ ``assertNotificationCount(int $count, ? string $transportName = null, string $message = '') ``
1086
1086
Asserts that the given number of notifications has been created
1087
1087
(in total or for the given transport).
1088
- ``assertQueuedNotificationCount(int $count, string $transportName = null, string $message = '') ``
1088
+ ``assertQueuedNotificationCount(int $count, ? string $transportName = null, string $message = '') ``
1089
1089
Asserts that the given number of notifications are queued
1090
1090
(in total or for the given transport).
1091
1091
``assertNotificationIsQueued(MessageEvent $event, string $message = '') ``
@@ -1113,7 +1113,7 @@ HttpClient Assertions
1113
1113
For all the following assertions, ``$client->enableProfiler() `` must be
1114
1114
called before the code that will trigger HTTP request(s).
1115
1115
1116
- ``assertHttpClientRequest(string $expectedUrl, string $expectedMethod = 'GET', string|array $expectedBody = null, array $expectedHeaders = [], string $httpClientId = 'http_client') ``
1116
+ ``assertHttpClientRequest(string $expectedUrl, string $expectedMethod = 'GET', string|array|null $expectedBody = null, array $expectedHeaders = [], string $httpClientId = 'http_client') ``
1117
1117
Asserts that the given URL has been called using, if specified,
1118
1118
the given method body and headers. By default it will check on the HttpClient,
1119
1119
but you can also pass a specific HttpClient ID.
0 commit comments