Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit ee16a5d

Browse filesBrowse files
committed
fix
1 parent ba3c760 commit ee16a5d
Copy full SHA for ee16a5d

File tree

6 files changed

+6
-6
lines changed
Filter options

6 files changed

+6
-6
lines changed

‎src/Symfony/Component/Notifier/Bridge/FreeMobile/Tests/FreeMobileTransportFactoryTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/FreeMobile/Tests/FreeMobileTransportFactoryTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public function supportsProvider(): iterable
3939
yield [false, 'somethingElse://login:pass@default?phone=0611223344'];
4040
}
4141

42-
public function incompleteDsnProvider(): iterable
42+
public function missingRequiredOptionProvider(): iterable
4343
{
4444
yield 'missing option: phone' => ['freemobile://login:pass@default'];
4545
}

‎src/Symfony/Component/Notifier/Bridge/Mattermost/Tests/MattermostTransportFactoryTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Mattermost/Tests/MattermostTransportFactoryTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public function supportsProvider(): iterable
5757
yield [false, 'somethingElse://token@host?channel=testChannel'];
5858
}
5959

60-
public function incompleteDsnProvider(): iterable
60+
public function missingRequiredOptionProvider(): iterable
6161
{
6262
yield 'missing option: token' => ['mattermost://host.test?channel=testChannel'];
6363
yield 'missing option: channel' => ['mattermost://token@host'];

‎src/Symfony/Component/Notifier/Bridge/Nexmo/Tests/NexmoTransportFactoryTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Nexmo/Tests/NexmoTransportFactoryTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public function supportsProvider(): iterable
3939
yield [false, 'somethingElse://apiKey:apiSecret@default?from=0611223344'];
4040
}
4141

42-
public function incompleteDsnProvider(): iterable
42+
public function missingRequiredOptionProvider(): iterable
4343
{
4444
yield 'missing option: from' => ['nexmo://apiKey:apiSecret@default'];
4545
}

‎src/Symfony/Component/Notifier/Bridge/RocketChat/Tests/RocketChatTransportFactoryTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/RocketChat/Tests/RocketChatTransportFactoryTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public function supportsProvider(): iterable
4444

4545
public function incompleteDsnProvider(): iterable
4646
{
47-
yield 'missing option: token' => ['rocketchat://host.test?channel=testChannel'];
47+
yield 'missing token' => ['rocketchat://host.test?channel=testChannel'];
4848
}
4949

5050
public function unsupportedSchemeProvider(): iterable

‎src/Symfony/Component/Notifier/Bridge/Sinch/Tests/SinchTransportFactoryTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Sinch/Tests/SinchTransportFactoryTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public function supportsProvider(): iterable
3939
yield [false, 'somethingElse://accountSid:authToken@default?from=0611223344'];
4040
}
4141

42-
public function incompleteDsnProvider(): iterable
42+
public function missingRequiredOptionProvider(): iterable
4343
{
4444
yield 'missing option: from' => ['sinch://accountSid:authToken@default'];
4545
}

‎src/Symfony/Component/Notifier/Bridge/Twilio/Tests/TwilioTransportFactoryTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Twilio/Tests/TwilioTransportFactoryTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public function supportsProvider(): iterable
3939
yield [false, 'somethingElse://accountSid:authToken@default?from=0611223344'];
4040
}
4141

42-
public function incompleteDsnProvider(): iterable
42+
public function missingRequiredOptionProvider(): iterable
4343
{
4444
yield 'missing option: from' => ['twilio://accountSid:authToken@default'];
4545
}

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.