Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
AddressMetadataManagement.php
Go to the documentation of this file.
1 <?php
7 
10 
15 {
19  protected $attributeResolver;
20 
24  public function __construct(
26  ) {
27  $this->attributeResolver = $attributeResolver;
28  }
29 
34  {
35  return $this->attributeResolver->getModelByAttribute(self::ENTITY_TYPE_ADDRESS, $attribute)
36  ->canBeSearchableInGrid();
37  }
38 
43  {
44  return $this->attributeResolver->getModelByAttribute(self::ENTITY_TYPE_ADDRESS, $attribute)
45  ->canBeFilterableInGrid();
46  }
47 }