Skip to content

Commit 0f21272

Browse files
committed
Correct indentation when auto-fixing
1 parent ca0ebae commit 0f21272

4 files changed

+12
-2
lines changed

Magento2/Sniffs/Html/HtmlClosingVoidTagsSniff.php

+5
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,11 @@ public function process(File $phpcsFile, $stackPtr): void
9494
$original = $token['content'];
9595
$replacement = str_replace(' />', '>', $original);
9696
$replacement = str_replace('/>', '>', $replacement);
97+
98+
if (preg_match('{^\s* />}', $original)) {
99+
$replacement = ' ' . $replacement;
100+
}
101+
97102
$phpcsFile->fixer->replaceToken($ptr, $replacement);
98103
}
99104
}

Magento2/Sniffs/Html/HtmlSelfClosingTagsSniff.php

+5
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,11 @@ public function process(File $phpcsFile, $stackPtr)
8484
$original = $token['content'];
8585
$replacement = str_replace(' />', '></' . $match[1] . '>', $original);
8686
$replacement = str_replace('/>', '></' . $match[1] . '>', $replacement);
87+
88+
if (preg_match('{^\s* />}', $original)) {
89+
$replacement = ' ' . $replacement;
90+
}
91+
8792
$phpcsFile->fixer->replaceToken($ptr, $replacement);
8893
}
8994
}

Magento2/Tests/Html/HtmlClosingVoidTagsUnitTest.inc.fixed

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<input type="text"
2626
id="multi-line-input"
2727
placeholder="Alert should be on last line"
28-
>
28+
>
2929
<input type="text"
3030
id="multi-line-input2"
3131
placeholder="Alert should be on last line">

Magento2/Tests/Html/HtmlSelfClosingTagsUnitTest.1.inc.fixed

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
<label for="test_input"></label>
4141
<label
4242
for="multi-line-input"
43-
></label>
43+
></label>
4444
<label
4545
for="multi-line-input2"></label>
4646
<style type="text/css"></style>

0 commit comments

Comments
 (0)