* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShopBundle\Service\DataProvider\Admin; /** * Data provider for new Architecture, about Module object model. * * This class will provide data from DB / ORM about Modules for the Admin interface. */ interface ModuleInterface { /** * Return all module entities coming from DB. * * @return array|bool */ public function getAllModules(); }