Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
AbstractHeaderProvider.php
Go to the documentation of this file.
1 <?php
8 
13 {
17  protected $headerName = '';
18 
22  protected $headerValue = '';
23 
29  public function canApply()
30  {
31  return true;
32  }
33 
39  public function getName()
40  {
41  return $this->headerName;
42  }
43 
49  public function getValue()
50  {
51  return $this->headerValue;
52  }
53 }