Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Explicite nullable types (7.0) #19797

Merged
merged 1 commit into from
Apr 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions testing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1082,10 +1082,10 @@ Mailer Assertions
Notifier Assertions
...................

``assertNotificationCount(int $count, string $transportName = null, string $message = '')``
``assertNotificationCount(int $count, ?string $transportName = null, string $message = '')``
Asserts that the given number of notifications has been created
(in total or for the given transport).
``assertQueuedNotificationCount(int $count, string $transportName = null, string $message = '')``
``assertQueuedNotificationCount(int $count, ?string $transportName = null, string $message = '')``
Asserts that the given number of notifications are queued
(in total or for the given transport).
``assertNotificationIsQueued(MessageEvent $event, string $message = '')``
Expand Down Expand Up @@ -1113,7 +1113,7 @@ HttpClient Assertions
For all the following assertions, ``$client->enableProfiler()`` must be
called before the code that will trigger HTTP request(s).

``assertHttpClientRequest(string $expectedUrl, string $expectedMethod = 'GET', string|array $expectedBody = null, array $expectedHeaders = [], string $httpClientId = 'http_client')``
``assertHttpClientRequest(string $expectedUrl, string $expectedMethod = 'GET', string|array|null $expectedBody = null, array $expectedHeaders = [], string $httpClientId = 'http_client')``
Asserts that the given URL has been called using, if specified,
the given method body and headers. By default it will check on the HttpClient,
but you can also pass a specific HttpClient ID.
Expand Down
Loading