Skip to content

Commit 7163819

Browse files
authored
Merge pull request #700 from PHPCSStandards/feature/various-minor-cs-fixes
CS: various minor tweaks
2 parents 6ae57bd + f541301 commit 7163819

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Tests/Utils/UseStatements/SplitAndMergeImportUseStatementTest.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -97,23 +97,23 @@ public static function dataSplitAndMergeImportUseStatementNonImportUse()
9797
{
9898
return [
9999
'closure-use-previous-empty-array' => [
100-
'testMarker' => '/* testClosureUse */',
100+
'testMarker' => '/* testClosureUse */',
101101
'expected' => [],
102102
'previousUse' => [],
103103
],
104104
// Documenting that a "previous" array is not cleaned of unexpected keys.
105105
'closure-use-previous-non-empty-array-unexpected-keys' => [
106-
'testMarker' => '/* testClosureUse */',
107-
'expected' => [
106+
'testMarker' => '/* testClosureUse */',
107+
'expected' => [
108108
'something' => 'else',
109109
],
110110
'previousUse' => [
111111
'something' => 'else',
112112
],
113113
],
114114
'closure-use-previous-base-array' => [
115-
'testMarker' => '/* testClosureUse */',
116-
'expected' => [
115+
'testMarker' => '/* testClosureUse */',
116+
'expected' => [
117117
'name' => [],
118118
'function' => [],
119119
'const' => [],
@@ -138,8 +138,8 @@ public static function dataSplitAndMergeImportUseStatement()
138138
{
139139
$data = [
140140
'name-plain' => [
141-
'testMarker' => '/* testUseNamePlainAliased */',
142-
'expected' => [
141+
'testMarker' => '/* testUseNamePlainAliased */',
142+
'expected' => [
143143
'name' => ['ClassAlias' => 'MyNamespace\YourClass'],
144144
'function' => [],
145145
'const' => [],

0 commit comments

Comments
 (0)