File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
tests/unit/TextUI/Command/Commands Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change 9
9
*/
10
10
namespace PHPUnit \TextUI \Command ;
11
11
12
- use function trim ;
12
+ use const PHP_EOL ;
13
13
use PHPUnit \Framework \Attributes \CoversClass ;
14
14
use PHPUnit \Framework \Attributes \DataProvider ;
15
15
use PHPUnit \Framework \Attributes \Small ;
@@ -28,25 +28,25 @@ public static function provider(): array
28
28
{
29
29
return [
30
30
[
31
- 'You are using the latest version of PHPUnit. ' ,
31
+ 'You are using the latest version of PHPUnit. ' . PHP_EOL ,
32
32
10 ,
33
33
'10.5.0 ' ,
34
34
'10.5.0 ' ,
35
35
'10.5.0 ' ,
36
36
],
37
37
[
38
- 'You are not using the latest version of PHPUnit.
39
- The latest version compatible with PHPUnit 10.5.0 is PHPUnit 10.5.1.
40
- The latest version is PHPUnit 10.5.1. ' ,
38
+ 'You are not using the latest version of PHPUnit. ' . PHP_EOL .
39
+ ' The latest version compatible with PHPUnit 10.5.0 is PHPUnit 10.5.1. ' . PHP_EOL .
40
+ ' The latest version is PHPUnit 10.5.1. ' . PHP_EOL ,
41
41
10 ,
42
42
'10.5.0 ' ,
43
43
'10.5.1 ' ,
44
44
'10.5.1 ' ,
45
45
],
46
46
[
47
- 'You are not using the latest version of PHPUnit.
48
- The latest version compatible with PHPUnit 10.5.0 is PHPUnit 10.5.1.
49
- The latest version is PHPUnit 11.0.0. ' ,
47
+ 'You are not using the latest version of PHPUnit. ' . PHP_EOL .
48
+ ' The latest version compatible with PHPUnit 10.5.0 is PHPUnit 10.5.1. ' . PHP_EOL .
49
+ ' The latest version is PHPUnit 11.0.0. ' . PHP_EOL ,
50
50
10 ,
51
51
'10.5.0 ' ,
52
52
'11.0.0 ' ,
You can’t perform that action at this time.
0 commit comments