Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
ModuleService.php
Go to the documentation of this file.
1 <?php
8 
13 {
17  protected $moduleList;
18 
22  public function __construct(
23  \Magento\Framework\Module\ModuleListInterface $moduleList
24  ) {
25  $this->moduleList = $moduleList;
26  }
27 
33  public function getModules()
34  {
35  return $this->moduleList->getNames();
36  }
37 }
__construct(\Magento\Framework\Module\ModuleListInterface $moduleList)