Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
ScopeDefault.php
Go to the documentation of this file.
1 <?php
6 namespace Magento\Framework\App;
7 
11 class ScopeDefault implements ScopeInterface
12 {
18  public function getCode()
19  {
20  return 'default';
21  }
22 
28  public function getId()
29  {
30  return 1;
31  }
32 
38  public function getScopeType()
39  {
40  return self::SCOPE_DEFAULT;
41  }
42 
48  public function getScopeTypeName()
49  {
50  return 'Default Scope';
51  }
52 
58  public function getName()
59  {
60  return 'Default';
61  }
62 }