Skip to content

Commit 5d295ba

Browse files
committed
Merge pull request #233 from keradus/method_argument_space
CS: In method arguments and method call, there MUST NOT be a space before each comma and there MUST be one space after each comma.
2 parents 7f2410f + c5926ee commit 5d295ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/Github/Tests/Functional/MarkdownTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public function shouldRetrieveParsedMarkdownContent()
2222

2323
$input = 'Hello world KnpLabs/KnpBundles#1 **cool**, and #1!';
2424
$output = '<p>Hello world <a href="https://github.com/KnpLabs/KnpBundles/issues/1" class="issue-link" title="Display docs">KnpLabs/KnpBundles#1</a> <strong>cool</strong>, and <a href="https://github.com/KnpLabs/KnpMenu/issues/1" class="issue-link" title="Limitation when using the TwigRenderer from elsewhere than a Twig template">#1</a>!</p>';
25-
$html = $api->render($input, 'gfm' , 'KnpLabs/KnpMenu');
25+
$html = $api->render($input, 'gfm', 'KnpLabs/KnpMenu');
2626

2727
$this->assertEquals($output, $html);
2828
}

0 commit comments

Comments
 (0)