Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
ComponentFile.php
Go to the documentation of this file.
1 <?php
7 
12 {
18  private $componentType;
19 
25  private $componentName;
26 
32  private $path;
33 
41  public function __construct($componentType, $componentName, $fullPath)
42  {
43  $this->componentType = $componentType;
44  $this->componentName = $componentName;
45  $this->path = $fullPath;
46  }
47 
53  public function getComponentType()
54  {
55  return $this->componentType;
56  }
57 
63  public function getComponentName()
64  {
65  return $this->componentName;
66  }
67 
73  public function getFullPath()
74  {
75  return $this->path;
76  }
77 }
__construct($componentType, $componentName, $fullPath)