@@ -37,7 +37,7 @@ function () {
37
37
public function testBufferReadsLargeChunks ($ condition , $ loopFactory )
38
38
{
39
39
if (true !== $ condition ()) {
40
- return $ this ->markTestSkipped ('Loop implementation not available ' );
40
+ $ this ->markTestSkipped ('Loop implementation not available ' );
41
41
}
42
42
43
43
$ loop = $ loopFactory ();
@@ -73,7 +73,7 @@ public function testBufferReadsLargeChunks($condition, $loopFactory)
73
73
public function testWriteLargeChunk ($ condition , $ loopFactory )
74
74
{
75
75
if (true !== $ condition ()) {
76
- return $ this ->markTestSkipped ('Loop implementation not available ' );
76
+ $ this ->markTestSkipped ('Loop implementation not available ' );
77
77
}
78
78
79
79
$ loop = $ loopFactory ();
@@ -113,7 +113,7 @@ public function testWriteLargeChunk($condition, $loopFactory)
113
113
public function testDoesNotEmitDataIfNothingHasBeenWritten ($ condition , $ loopFactory )
114
114
{
115
115
if (true !== $ condition ()) {
116
- return $ this ->markTestSkipped ('Loop implementation not available ' );
116
+ $ this ->markTestSkipped ('Loop implementation not available ' );
117
117
}
118
118
119
119
$ loop = $ loopFactory ();
@@ -141,7 +141,7 @@ public function testDoesNotEmitDataIfNothingHasBeenWritten($condition, $loopFact
141
141
public function testDoesNotWriteDataIfRemoteSideFromPairHasBeenClosed ($ condition , $ loopFactory )
142
142
{
143
143
if (true !== $ condition ()) {
144
- return $ this ->markTestSkipped ('Loop implementation not available ' );
144
+ $ this ->markTestSkipped ('Loop implementation not available ' );
145
145
}
146
146
147
147
$ loop = $ loopFactory ();
@@ -171,7 +171,7 @@ public function testDoesNotWriteDataIfRemoteSideFromPairHasBeenClosed($condition
171
171
public function testDoesNotWriteDataIfServerSideHasBeenClosed ($ condition , $ loopFactory )
172
172
{
173
173
if (true !== $ condition ()) {
174
- return $ this ->markTestSkipped ('Loop implementation not available ' );
174
+ $ this ->markTestSkipped ('Loop implementation not available ' );
175
175
}
176
176
177
177
$ loop = $ loopFactory ();
@@ -204,7 +204,7 @@ public function testDoesNotWriteDataIfServerSideHasBeenClosed($condition, $loopF
204
204
public function testDoesNotWriteDataIfClientSideHasBeenClosed ($ condition , $ loopFactory )
205
205
{
206
206
if (true !== $ condition ()) {
207
- return $ this ->markTestSkipped ('Loop implementation not available ' );
207
+ $ this ->markTestSkipped ('Loop implementation not available ' );
208
208
}
209
209
210
210
$ loop = $ loopFactory ();
@@ -237,7 +237,7 @@ public function testDoesNotWriteDataIfClientSideHasBeenClosed($condition, $loopF
237
237
public function testReadsSingleChunkFromProcessPipe ($ condition , $ loopFactory )
238
238
{
239
239
if (true !== $ condition ()) {
240
- return $ this ->markTestSkipped ('Loop implementation not available ' );
240
+ $ this ->markTestSkipped ('Loop implementation not available ' );
241
241
}
242
242
243
243
$ loop = $ loopFactory ();
@@ -256,7 +256,7 @@ public function testReadsSingleChunkFromProcessPipe($condition, $loopFactory)
256
256
public function testReadsMultipleChunksFromProcessPipe ($ condition , $ loopFactory )
257
257
{
258
258
if (true !== $ condition ()) {
259
- return $ this ->markTestSkipped ('Loop implementation not available ' );
259
+ $ this ->markTestSkipped ('Loop implementation not available ' );
260
260
}
261
261
262
262
$ loop = $ loopFactory ();
@@ -282,7 +282,7 @@ public function testReadsMultipleChunksFromProcessPipe($condition, $loopFactory)
282
282
public function testReadsLongChunksFromProcessPipe ($ condition , $ loopFactory )
283
283
{
284
284
if (true !== $ condition ()) {
285
- return $ this ->markTestSkipped ('Loop implementation not available ' );
285
+ $ this ->markTestSkipped ('Loop implementation not available ' );
286
286
}
287
287
288
288
$ loop = $ loopFactory ();
@@ -308,7 +308,7 @@ public function testReadsLongChunksFromProcessPipe($condition, $loopFactory)
308
308
public function testReadsNothingFromProcessPipeWithNoOutput ($ condition , $ loopFactory )
309
309
{
310
310
if (true !== $ condition ()) {
311
- return $ this ->markTestSkipped ('Loop implementation not available ' );
311
+ $ this ->markTestSkipped ('Loop implementation not available ' );
312
312
}
313
313
314
314
$ loop = $ loopFactory ();
@@ -328,7 +328,7 @@ public function testReadsNothingFromProcessPipeWithNoOutput($condition, $loopFac
328
328
public function testEmptyReadShouldntFcloseStream ($ condition , $ loopFactory )
329
329
{
330
330
if (true !== $ condition ()) {
331
- return $ this ->markTestSkipped ('Loop implementation not available ' );
331
+ $ this ->markTestSkipped ('Loop implementation not available ' );
332
332
}
333
333
334
334
$ server = stream_socket_server ('tcp://127.0.0.1:0 ' );
0 commit comments