for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace MerchantSafeUnipay\SDK\Action\Query;
use MerchantSafeUnipay;
use MerchantSafeUnipay\SDK\Action\ActionInterface;
final class Session extends QueryAbstract implements ActionInterface
{
static protected $queryAction = 'QUERYSESSION';
static protected $queryParamKeys = [
'SESSIONTOKEN'
];
public function getQuery($args)
$this->queryParameters = MerchantSafeUnipay\filter($this->queryParamKeys, $args);
}