* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Core\Domain\Language\CommandHandler; use PrestaShop\PrestaShop\Core\Domain\Language\Command\AddLanguageCommand; use PrestaShop\PrestaShop\Core\Domain\Language\ValueObject\LanguageId; /** * Interface for services that handles command which adds new language */ interface AddLanguageHandlerInterface { /** * @param AddLanguageCommand $command * * @return LanguageId Added language's identity */ public function handle(AddLanguageCommand $command); }