Skip to content

Commit

Permalink
Style
Browse files Browse the repository at this point in the history
  • Loading branch information
tvlooy committed Sep 26, 2024
1 parent 0b93bd6 commit 038dc78
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion tests/php/api/FirstApiTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use Symfony\Contracts\HttpClient\HttpClientInterface;

/**
* This is just a demo test
* This is just a demo test.
*/
final class FirstApiTest extends KernelTestCase
{
Expand Down
12 changes: 6 additions & 6 deletions tests/php/unit/Service/ParticipantShufflerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ public function testParticipantShufflerCase1()

$key = 0;
foreach ($party->getParticipants() as $participant) {
//check if we did not match excluded participant
// check if we did not match excluded participant
$this->assertNotContains($shuffeledParticipants[$key], $participant->getExcludedParticipants());
//check if we have an Participant matched
// check if we have an Participant matched
$this->assertNotNull($shuffeledParticipants[$key]);
++$key;
}
Expand Down Expand Up @@ -480,9 +480,9 @@ public function testParticipantShufflerCase2()

$key = 0;
foreach ($party->getParticipants() as $participant) {
//check if we did not match excluded participant
// check if we did not match excluded participant
$this->assertNotContains($shuffeledParticipants[$key], $participant->getExcludedParticipants());
//check if we have an Participant matched
// check if we have an Participant matched
$this->assertNotNull($shuffeledParticipants[$key]);
++$key;
}
Expand Down Expand Up @@ -1727,9 +1727,9 @@ public function testParticipantShufflerCase3()

$key = 0;
foreach ($party->getParticipants() as $participant) {
//check if we did not match excluded participant
// check if we did not match excluded participant
$this->assertNotContains($shuffeledParticipants[$key], $participant->getExcludedParticipants());
//check if we have an Participant matched
// check if we have an Participant matched
$this->assertNotNull($shuffeledParticipants[$key]);
++$key;
}
Expand Down
3 changes: 2 additions & 1 deletion tests/php/unit/Twig/LinkifyExtensionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@ class LinkifyExtensionTest extends TestCase
{
/**
* @test
*
* @dataProvider htmlProvider
*/
public function it_should_wrap_an_html_link_in_an_anchor_tag($rawHtml, $anchorHtml)
public function itShouldWrapAnHtmlLinkInAnAnchorTag($rawHtml, $anchorHtml)
{
$filter = new LinkifyExtension();

Expand Down

0 comments on commit 038dc78

Please sign in to comment.