Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
ConstructorEightArguments.php
Go to the documentation of this file.
1 <?php
7 
12 {
16  protected $_eight;
17 
30  public function __construct(
31  \Magento\Framework\ObjectManager\TestAsset\Basic $one,
32  \Magento\Framework\ObjectManager\TestAsset\Basic $two,
33  \Magento\Framework\ObjectManager\TestAsset\Basic $three,
34  \Magento\Framework\ObjectManager\TestAsset\Basic $four,
35  \Magento\Framework\ObjectManager\TestAsset\Basic $five,
36  \Magento\Framework\ObjectManager\TestAsset\Basic $six,
37  \Magento\Framework\ObjectManager\TestAsset\Basic $seven,
38  \Magento\Framework\ObjectManager\TestAsset\Basic $eight
39  ) {
40  parent::__construct($one, $two, $three, $four, $five, $six, $seven);
41  $this->_eight = $eight;
42  }
43 }
__construct(\Magento\Framework\ObjectManager\TestAsset\Basic $one, \Magento\Framework\ObjectManager\TestAsset\Basic $two, \Magento\Framework\ObjectManager\TestAsset\Basic $three, \Magento\Framework\ObjectManager\TestAsset\Basic $four, \Magento\Framework\ObjectManager\TestAsset\Basic $five, \Magento\Framework\ObjectManager\TestAsset\Basic $six, \Magento\Framework\ObjectManager\TestAsset\Basic $seven, \Magento\Framework\ObjectManager\TestAsset\Basic $eight)