Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
UpgradeScriptList.php
Go to the documentation of this file.
1 <?php
6 declare(strict_types=1);
7 
9 
15 {
21  private $scripts;
22 
28  public function __construct(array $scripts = [])
29  {
30  $this->scripts = [
31  'upgradeTestSchema' => new UpdateTestSchemaPaths(),
32  ] + $scripts;
33  }
34 
38  public function getUpgradeScripts()
39  {
40  return $this->scripts;
41  }
42 }