Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
UrlRewriteBunchReplacer.php
Go to the documentation of this file.
1 <?php
7 
9 
11 {
15  private $urlPersist;
16 
20  public function __construct(UrlPersistInterface $urlPersist)
21  {
22  $this->urlPersist = $urlPersist;
23  }
24 
32  public function doBunchReplace(array $urls, $bunchSize = 10000)
33  {
34  foreach (array_chunk($urls, $bunchSize) as $urlsBunch) {
35  $this->urlPersist->replace($urlsBunch);
36  }
37  }
38 }