Code Duplication    Length = 3-3 lines in 2 locations

src/PhpSpreadsheet/Shared/OLE/PPS/Root.php 2 locations

@@ 319-321 (lines=3) @@
316
        $iSbCnt = floor($this->_BIG_BLOCK_SIZE / \PhpSpreadsheet\Shared\OLE::OLE_LONG_INT_SIZE);
317
        if ($iSmBlk % $iSbCnt) {
318
            $iB = $iSbCnt - ($iSmBlk % $iSbCnt);
319
            for ($i = 0; $i < $iB; ++$i) {
320
                fwrite($FILE, pack('V', -1));
321
            }
322
        }
323
324
        return $sRes;
@@ 427-429 (lines=3) @@
424
            }
425
            if (($iBdCnt - $i1stBdL) % ($iBbCnt - 1)) {
426
                $iB = ($iBbCnt - 1) - (($iBdCnt - $i1stBdL) % ($iBbCnt - 1));
427
                for ($i = 0; $i < $iB; ++$i) {
428
                    fwrite($FILE, pack('V', -1));
429
                }
430
            }
431
            fwrite($FILE, pack('V', -2));
432
        }