Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
BackendApp.php
Go to the documentation of this file.
1 <?php
7 namespace Magento\Backend\App;
8 
15 {
19  private $cookiePath;
20 
24  private $startupPage;
25 
29  private $aclResourceName;
30 
36  public function __construct(
37  $cookiePath,
38  $startupPage,
39  $aclResourceName
40  ) {
41  $this->cookiePath = $cookiePath;
42  $this->startupPage = $startupPage;
43  $this->aclResourceName = $aclResourceName;
44  }
45 
51  public function getCookiePath()
52  {
53  return $this->cookiePath;
54  }
55 
61  public function getStartupPage()
62  {
63  return $this->startupPage;
64  }
65 
71  public function getAclResource()
72  {
73  return $this->aclResourceName;
74  }
75 }
__construct( $cookiePath, $startupPage, $aclResourceName)
Definition: BackendApp.php:36