Files
lulandia.pl/modules/przelewy24/interfaces/Przelewy24RestBlikInterface.php
2025-04-01 00:38:54 +02:00

26 lines
459 B
PHP

<?php
/**
* @author Przelewy24
* @copyright Przelewy24
* @license https://www.gnu.org/licenses/lgpl-3.0.en.html
*/
if (!defined('_PS_VERSION_')) {
exit;
}
/**
* Interface Przelewy24RestBlikInterface
*/
interface Przelewy24RestBlikInterface
{
/**
* Execute payment by BLIK code.
*
* @param $token
* @param $blikCode
*
* @return object|bool
*/
public function executePaymentByBlikCode($token, $blikCode);
}