Skip to content

Commit 16a4b69

Browse files
committed
Update tests/Fixer/FunctionParameterSeparationFixerTest.php
1 parent 7c252b9 commit 16a4b69

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

tests/Fixer/FunctionParameterSeparationFixerTest.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ function foo(
9797
9898
int $b,
9999
100-
#[Attribute]
100+
#[AnAttribute]
101101
int $c,
102102
103103
int $d
@@ -108,7 +108,7 @@ function foo(
108108
function foo(
109109
int $a,
110110
int $b,
111-
#[Attribute]
111+
#[AnAttribute]
112112
int $c,
113113
int $d
114114
) {}
@@ -119,7 +119,7 @@ function foo(
119119
<<<'PHP'
120120
<?php
121121
function foo(
122-
#[Attribute]
122+
#[AnAttribute]
123123
int $a,
124124
125125
int $b,
@@ -128,7 +128,7 @@ function foo(
128128
<<<'PHP'
129129
<?php
130130
function foo(
131-
#[Attribute]
131+
#[AnAttribute]
132132
int $a,
133133
int $b,
134134
) {}
@@ -161,7 +161,7 @@ function foo(
161161
<<<'PHP'
162162
<?php
163163
function foo(
164-
#[Attribute]
164+
#[AnAttribute]
165165
int $a,
166166
167167
int $b
@@ -173,14 +173,14 @@ function bar(
173173
function baz(
174174
int $a,
175175
176-
#[Attribute]
176+
#[AnAttribute]
177177
int $b,
178178
) {}
179179
PHP,
180180
<<<'PHP'
181181
<?php
182182
function foo(
183-
#[Attribute]
183+
#[AnAttribute]
184184
int $a,
185185
int $b
186186
) {}
@@ -190,7 +190,7 @@ function bar(
190190
) {}
191191
function baz(
192192
int $a,
193-
#[Attribute]
193+
#[AnAttribute]
194194
int $b,
195195
) {}
196196
PHP,

0 commit comments

Comments
 (0)