Skip to content

Commit c638f8b

Browse files
committed
Update some argument names
1 parent 1963479 commit c638f8b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

testing.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -973,26 +973,26 @@ Mailer Assertions
973973
Notifier Assertions
974974
...................
975975

976-
``assertNotificationCount(int $count, string $transport = null, string $message = '')``
976+
``assertNotificationCount(int $count, string $transportName = null, string $message = '')``
977977
Asserts that the given number of notifications has been created
978978
(in total or for the given transport).
979-
``assertQueuedNotificationCount(int $count, string $transport = null, string $message = '')``
979+
``assertQueuedNotificationCount(int $count, string $transportName = null, string $message = '')``
980980
Asserts that the given number of notifications are queued
981981
(in total or for the given transport).
982982
``assertNotificationIsQueued(MessageEvent $event, string $message = '')``
983983
Asserts that the given notification is queued.
984984
``assertNotificationIsNotQueued(MessageEvent $event, string $message = '')``
985985
Asserts that the given notification is not queued.
986-
``assertNotificationSubjectContains(MessageInterface $messageObject, string $text, string $message = '')``
986+
``assertNotificationSubjectContains(MessageInterface $notification, string $text, string $message = '')``
987987
Asserts that the given text is included in the subject of
988988
the given notification.
989-
``assertNotificationSubjectNotContains(MessageInterface $messageObject, string $text, string $message = '')``
989+
``assertNotificationSubjectNotContains(MessageInterface $notification, string $text, string $message = '')``
990990
Asserts that the given text is not included in the subject of
991991
the given notification.
992-
``assertNotificationTransportIsEqual(MessageInterface $messageObject, string $text, string $message = '')``
992+
``assertNotificationTransportIsEqual(MessageInterface $notification, string $transportName, string $message = '')``
993993
Asserts that the name of the transport for the given notification
994994
is the same as the given text.
995-
``assertNotificationTransportIsNotEqual(MessageInterface $messageObject, string $text, string $message = '')``
995+
``assertNotificationTransportIsNotEqual(MessageInterface $notification, string $transportName, string $message = '')``
996996
Asserts that the name of the transport for the given notification
997997
is not the same as the given text.
998998

0 commit comments

Comments
 (0)