* @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\Order\Payment\CommandHandler; use PrestaShop\PrestaShop\Core\Domain\Order\Payment\Command\AddPaymentCommand; /** * Interface for service that handles adding payment for order. */ interface AddPaymentHandlerInterface { /** * @param AddPaymentCommand $command */ public function handle(AddPaymentCommand $command); }