| Current Path : /var/www/clients/client3/web2/web/vendor/klarna/module-kp/Api/ |
| Current File : /var/www/clients/client3/web2/web/vendor/klarna/module-kp/Api/SessionInitiatorInterface.php |
<?php
/**
* This file is part of the Klarna Kp module
*
* (c) Klarna AB
*
* For the full copyright and license information, please view the NOTICE
* and LICENSE files that were distributed with this source code.
*/
namespace Klarna\Kp\Api;
use Magento\Quote\Api\Data\CartInterface;
interface SessionInitiatorInterface
{
/**
* @param CartInterface $quote
* @param string $code
* @return bool
*/
public function checkAvailable($quote, $code);
}