Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
DependsOnAlias.php
Go to the documentation of this file.
1 <?php
7 
13 {
17  protected $_object;
18 
22  public function __construct(HasOptionalParameters $object)
23  {
24  $this->_object = $object;
25  }
26 
27  public function getOverriddenString()
28  {
29  return $this->_object->getOptionalStringParameter();
30  }
31 
32  public function getOverRiddenInteger()
33  {
34  return $this->_object->getOptionalIntegerParameter();
35  }
36 }