* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShopBundle\Translation\Provider; use Symfony\Component\Translation\MessageCatalogue; /** * Provide an Message Catalogue from the Database */ interface DatabaseCatalogueInterface { /** * @param string|null $themeName the Theme name * * @return MessageCatalogue */ public function getDatabaseCatalogue($themeName = null); }