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 
10 
15 class Context
16 {
21 
26 
33  public function __construct(
35  Page\Config\Structure $pageConfigStructure
36  ) {
37  $this->scheduledStructure = $scheduledStructure;
38  $this->pageConfigStructure = $pageConfigStructure;
39  }
40 
44  public function getScheduledStructure()
45  {
47  }
48 
52  public function getPageConfigStructure()
53  {
55  }
56 }
__construct(Layout\ScheduledStructure $scheduledStructure, Page\Config\Structure $pageConfigStructure)
Definition: Context.php:33