Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
ConstructorOneArgument.php
Go to the documentation of this file.
1 <?php
7 
9 {
13  protected $_one;
14 
20  public function __construct(\Magento\Framework\ObjectManager\TestAsset\Basic $one)
21  {
22  $this->_one = $one;
23  }
24 
28  public function getBasicDependency()
29  {
30  return $this->_one;
31  }
32 }
__construct(\Magento\Framework\ObjectManager\TestAsset\Basic $one)