30 lines
634 B
PHP
30 lines
634 B
PHP
<?php
|
|
/**
|
|
* @author Przelewy24
|
|
* @copyright Przelewy24
|
|
* @license https://www.gnu.org/licenses/gpl.html
|
|
*/
|
|
if (!defined('_PS_VERSION_')) {
|
|
exit;
|
|
}
|
|
|
|
/**
|
|
* Class Przelewy24RestTransactionInterfaceFactory
|
|
*
|
|
* One of factories for Przelewy24 plugin.
|
|
*/
|
|
class Przelewy24RestTransactionInterfaceFactory
|
|
{
|
|
/**
|
|
* Create instance of Przelewy24RestTransactionInterface.
|
|
*
|
|
* @param string $suffix money suffix
|
|
*
|
|
* @return Przelewy24RestTransactionInterface
|
|
*/
|
|
public static function buildForSuffix($suffix)
|
|
{
|
|
return Przelewy24RestTransactionFactory::buildForSuffix($suffix);
|
|
}
|
|
}
|