@@ -49,10 +49,10 @@ public function testReadsAllEventsFromTheGivenSubject(): void
4949 ],
5050 );
5151
52- iterator_count ( $ this ->client ->writeEvents ([
52+ $ this ->client ->writeEvents ([
5353 $ firstEvent ,
5454 $ secondEvent ,
55- ])) ;
55+ ]);
5656
5757 $ eventsRead = [];
5858 $ readEventsOptions = new ReadEventsOptions (false );
@@ -84,10 +84,10 @@ public function testReadsRecursively(): void
8484 ],
8585 );
8686
87- iterator_count ( $ this ->client ->writeEvents ([
87+ $ this ->client ->writeEvents ([
8888 $ firstEvent ,
8989 $ secondEvent ,
90- ])) ;
90+ ]);
9191
9292 $ eventsRead = [];
9393 $ readEventsOptions = new ReadEventsOptions (true );
@@ -119,10 +119,10 @@ public function testReadsChronologically(): void
119119 ],
120120 );
121121
122- iterator_count ( $ this ->client ->writeEvents ([
122+ $ this ->client ->writeEvents ([
123123 $ firstEvent ,
124124 $ secondEvent ,
125- ])) ;
125+ ]);
126126
127127 $ eventsRead = [];
128128 $ readEventsOptions = new ReadEventsOptions (
@@ -163,10 +163,10 @@ public function testReadsAntiChronologically(): void
163163 ],
164164 );
165165
166- iterator_count ( $ this ->client ->writeEvents ([
166+ $ this ->client ->writeEvents ([
167167 $ firstEvent ,
168168 $ secondEvent ,
169- ])) ;
169+ ]);
170170
171171 $ eventsRead = [];
172172 $ readEventsOptions = new ReadEventsOptions (
@@ -207,10 +207,10 @@ public function testReadsWithLowerBound(): void
207207 ],
208208 );
209209
210- iterator_count ( $ this ->client ->writeEvents ([
210+ $ this ->client ->writeEvents ([
211211 $ firstEvent ,
212212 $ secondEvent ,
213- ])) ;
213+ ]);
214214
215215 $ eventsRead = [];
216216 $ readEventsOptions = new ReadEventsOptions (
@@ -248,10 +248,10 @@ public function testReadsWithUpperBound(): void
248248 ],
249249 );
250250
251- iterator_count ( $ this ->client ->writeEvents ([
251+ $ this ->client ->writeEvents ([
252252 $ firstEvent ,
253253 $ secondEvent ,
254- ])) ;
254+ ]);
255255
256256 $ eventsRead = [];
257257 $ readEventsOptions = new ReadEventsOptions (
@@ -289,10 +289,10 @@ public function testReadsFromLatestEvent(): void
289289 ],
290290 );
291291
292- iterator_count ( $ this ->client ->writeEvents ([
292+ $ this ->client ->writeEvents ([
293293 $ firstEvent ,
294294 $ secondEvent ,
295- ])) ;
295+ ]);
296296
297297 $ eventsRead = [];
298298 $ readEventsOptions = new ReadEventsOptions (
0 commit comments