@@ -38,7 +38,10 @@ public function testWithNoStreamArgument(): void
38
38
39
39
$ this ->assertVerifyWasNotSuccessful ();
40
40
41
- $ this ->assertResultsHasFailure (Failure::class, 'The stream argument must be specified using a positional parameter ' );
41
+ $ this ->assertResultsHasFailure (
42
+ Failure::class,
43
+ 'The stream argument must be specified using a positional parameter '
44
+ );
42
45
}
43
46
44
47
public function testWithStreamAsNamedArgument (): void
@@ -47,7 +50,10 @@ public function testWithStreamAsNamedArgument(): void
47
50
48
51
$ this ->assertVerifyWasNotSuccessful ();
49
52
50
- $ this ->assertResultsHasFailure (Failure::class, 'The stream argument must be specified using a positional parameter ' );
53
+ $ this ->assertResultsHasFailure (
54
+ Failure::class,
55
+ 'The stream argument must be specified using a positional parameter '
56
+ );
51
57
}
52
58
53
59
public function testWithSecondArgumentSpecified (): void
@@ -56,7 +62,10 @@ public function testWithSecondArgumentSpecified(): void
56
62
57
63
$ this ->assertVerifyWasNotSuccessful ();
58
64
59
- $ this ->assertResultsHasFailure (Failure::class, 'The second positional argument should not be specified ' );
65
+ $ this ->assertResultsHasFailure (
66
+ Failure::class,
67
+ 'The second positional argument should not be specified '
68
+ );
60
69
}
61
70
62
71
public function testWithMoreThanTwoArguments (): void
@@ -65,7 +74,10 @@ public function testWithMoreThanTwoArguments(): void
65
74
66
75
$ this ->assertVerifyWasNotSuccessful ();
67
76
68
- $ this ->assertResultsHasFailure (Failure::class, 'You should only specify the stream and separator arguments, no others ' );
77
+ $ this ->assertResultsHasFailure (
78
+ Failure::class,
79
+ 'You should only specify the stream and separator arguments, no others '
80
+ );
69
81
}
70
82
71
83
public function testWithNoSeparatorArgumentSpecified (): void
@@ -74,7 +86,10 @@ public function testWithNoSeparatorArgumentSpecified(): void
74
86
75
87
$ this ->assertVerifyWasNotSuccessful ();
76
88
77
- $ this ->assertResultsHasFailure (Failure::class, 'The separator argument has not been specified ' );
89
+ $ this ->assertResultsHasFailure (
90
+ Failure::class,
91
+ 'The separator argument has not been specified '
92
+ );
78
93
}
79
94
80
95
public function testWithWrongNamedArgument (): void
@@ -83,7 +98,10 @@ public function testWithWrongNamedArgument(): void
83
98
84
99
$ this ->assertVerifyWasNotSuccessful ();
85
100
86
- $ this ->assertResultsHasFailure (Failure::class, 'A named argument has been used, but not for the separator argument ' );
101
+ $ this ->assertResultsHasFailure (
102
+ Failure::class,
103
+ 'A named argument has been used, but not for the separator argument '
104
+ );
87
105
}
88
106
89
107
public function testWithNoFgetCsv (): void
0 commit comments