Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
SkipStaticColumnsProvider.php
Go to the documentation of this file.
1 <?php
8 
16 {
20  private $skipStaticColumns;
21 
26  public function __construct($skipStaticColumns = [])
27  {
28  $this->skipStaticColumns = $skipStaticColumns;
29  }
30 
35  public function get()
36  {
37  return $this->skipStaticColumns;
38  }
39 }