Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
ModuleContext.php
Go to the documentation of this file.
1 <?php
6 namespace Magento\Setup\Model;
7 
9 
16 {
22  private $version;
23 
29  public function __construct($version)
30  {
31  $this->version = $version;
32  }
33 
37  public function getVersion()
38  {
39  return $this->version;
40  }
41 }