Skip to content

Commit 5a9c1b5

Browse files
committed
minor symfony#17243 Removed spaces before semicolon (dereckson)
This PR was merged into the 2.3 branch. Discussion ---------- Removed spaces before semicolon 'lorem ; ipsum' → 'lorem; ipsum' | Q | A | ------------- | --- | Fixed tickets | symfony#17242 | License | MIT Commits ------- 169d551 Removed spaces before semicolon
2 parents eeaa4dc + 169d551 commit 5a9c1b5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Symfony/Bundle/TwigBundle/Resources/views/Exception/exception.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
9999
if (clazz) {
100100
var tags = document.getElementsByTagName('*');
101-
for (i = tags.length - 1; i >= 0 ; i--) {
101+
for (i = tags.length - 1; i >= 0; i--) {
102102
if (tags[i].className === clazz) {
103103
tags[i].style.display = 'none';
104104
}

src/Symfony/Component/Console/Helper/DialogHelper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@ private function hasSttyAvailable()
444444
* @param callable $interviewer A callable that will ask for a question and return the result
445445
* @param OutputInterface $output An Output instance
446446
* @param callable $validator A PHP callback
447-
* @param int|false $attempts Max number of times to ask before giving up ; false will ask infinitely
447+
* @param int|false $attempts Max number of times to ask before giving up; false will ask infinitely
448448
*
449449
* @return string The validated response
450450
*

src/Symfony/Component/HttpFoundation/Tests/RequestTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ public function testCreate()
215215
$this->assertEquals('/?foo', $request->getRequestUri());
216216
$this->assertEquals(array('foo' => ''), $request->query->all());
217217

218-
// assume rewrite rule: (.*) --> app/app.php ; app/ is a symlink to a symfony web/ directory
218+
// assume rewrite rule: (.*) --> app/app.php; app/ is a symlink to a symfony web/ directory
219219
$request = Request::create('http://test.com/apparthotel-1234', 'GET', array(), array(), array(),
220220
array(
221221
'DOCUMENT_ROOT' => '/var/www/www.test.com',

0 commit comments

Comments
 (0)