Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Grid.php
Go to the documentation of this file.
1 <?php
7 
9 
13 class Grid
14 {
18  protected $customerGrid;
19 
23  public function __construct(
24  CustomerGrid $grid
25  ) {
26  $this->customerGrid = $grid;
27  }
28 
34  public function syncCustomerGrid()
35  {
36  $this->customerGrid->syncCustomerGrid();
37  }
38 }
__construct(CustomerGrid $grid)
Definition: Grid.php:23