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