spreadsheet->getActiveSheet()->removeRow(2, 4); } /** * @Groups({"slow"}) * @revs(4) * @Iterations(4) * @OutputTimeUnit("milliseconds") * @AfterMethods("tearDown") */ public function benchmarkRemoveRowsMid(): void { $this->spreadsheet->getActiveSheet()->removeRow(255, 4); } /** * @Groups({"slow"}) * @revs(4) * @Iterations(7) * @OutputTimeUnit("milliseconds") * @AfterMethods("tearDown") */ public function benchmarkRemoveRowsLate(): void { $this->spreadsheet->getActiveSheet()->removeRow(510, 4); } }