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