Skip to content

Commit

Permalink
remove unnecessary test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
YAhiru committed Dec 14, 2021
1 parent c23255a commit 1b204be
Showing 1 changed file with 0 additions and 21 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1933,13 +1933,6 @@ public function provideFixWithPrivatePhp71Cases(): array
'<?php class Foo { private /* foo */CONST BAR = 9000; }',
'<?php class Foo { private /* foo */CONST BAR = 9000; }',
],
[
'<?php class Foo {
private CONST
FOO = 9000,
BAR = 10000;
}',
],
];
}

Expand Down Expand Up @@ -2040,13 +2033,6 @@ public function provideFixWithProtectedPhp71Cases(): array
'<?php class Foo { protected /* foo */CONST BAR = 9000; }',
'<?php class Foo { protected /* foo */CONST BAR = 9000; }',
],
[
'<?php class Foo {
protected CONST
FOO = 9000,
BAR = 10000;
}',
],
];
}

Expand Down Expand Up @@ -2125,13 +2111,6 @@ function bar() {} }',
'<?php class Foo { public /* foo */CONST BAR = 9000; }',
'<?php class Foo { public /* foo */CONST BAR = 9000; }',
],
[
'<?php class Foo {
public CONST
FOO = 9000,
BAR = 10000;
}',
],
];
}

Expand Down

0 comments on commit 1b204be

Please sign in to comment.