Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Context.php
Go to the documentation of this file.
1 <?php
7 
8 use \Magento\Framework\File\Csv;
9 
21 class Context
22 {
26  private $fixtureManager;
27 
31  private $csvReader;
32 
37  public function __construct(FixtureManager $fixtureManager, Csv $csvReader)
38  {
39  $this->fixtureManager = $fixtureManager;
40  $this->csvReader = $csvReader;
41  }
42 
46  public function getFixtureManager()
47  {
48  return $this->fixtureManager;
49  }
50 
54  public function getCsvReader()
55  {
56  return $this->csvReader;
57  }
58 }
__construct(FixtureManager $fixtureManager, Csv $csvReader)
Definition: Context.php:37