25 lines
393 B
PHP
25 lines
393 B
PHP
<?php
|
|
/**
|
|
* @author Przelewy24
|
|
* @copyright Przelewy24
|
|
* @license https://www.gnu.org/licenses/lgpl-3.0.en.html
|
|
*/
|
|
if (!defined('_PS_VERSION_')) {
|
|
exit;
|
|
}
|
|
|
|
/**
|
|
* Interface Przelewy24RestCardInterface
|
|
*/
|
|
interface Przelewy24RestCardInterface
|
|
{
|
|
/**
|
|
* Charge with3ds.
|
|
*
|
|
* @param $token
|
|
*
|
|
* @return array
|
|
*/
|
|
public function chargeWith3ds($token);
|
|
}
|