* @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\SqlManagement\CommandHandler; use PrestaShop\PrestaShop\Core\Domain\SqlManagement\Command\AddSqlRequestCommand; use PrestaShop\PrestaShop\Core\Domain\SqlManagement\ValueObject\SqlRequestId; /** * Interface AddSqlRequestHandlerInterface defines contract for SqlRequest creation handler. */ interface AddSqlRequestHandlerInterface { /** * @param AddSqlRequestCommand $command * * @return SqlRequestId */ public function handle(AddSqlRequestCommand $command); }