Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
ConstructorTwoArguments.php
Go to the documentation of this file.
1 <?php
7 
9 {
13  protected $_two;
14 
21  public function __construct(
22  \Magento\Framework\ObjectManager\TestAsset\Basic $one,
23  \Magento\Framework\ObjectManager\TestAsset\Basic $two
24  ) {
25  parent::__construct($one);
26  $this->_two = $two;
27  }
28 }
__construct(\Magento\Framework\ObjectManager\TestAsset\Basic $one, \Magento\Framework\ObjectManager\TestAsset\Basic $two)