Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
ScopeInterface.php
Go to the documentation of this file.
1 <?php
6 namespace Magento\Framework\App;
7 
12 interface ScopeInterface
13 {
17  const SCOPE_DEFAULT = 'default';
18 
24  public function getCode();
25 
31  public function getId();
32 
39  public function getScopeType();
40 
47  public function getScopeTypeName();
48 
55  public function getName();
56 }