Test Failed
Push — master ( 53d82e...9a7f3b )
by Mehmet
02:15
created

Session::getQuery()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 1
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
declare(strict_types=1);
3
4
namespace MerchantSafeUnipay\SDK\Action\Query;
5
6
use MerchantSafeUnipay;
7
use MerchantSafeUnipay\SDK\Action\ActionInterface;
8
9
class Session extends QueryAbstract implements ActionInterface
10
{
11
    static protected $queryAction = 'QUERYSESSION';
12
    static protected $queryParamKeys = [
13
        'SESSIONTOKEN'
14
    ];
15
    public function getQuery($args)
16
    {
17
        $this->queryParameters = MerchantSafeUnipay\filter($this->queryParamKeys, $args);
18
    }
19
}
20