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

Session   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 11
rs 10
c 0
b 0
f 0
wmc 1
lcom 1
cbo 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A getQuery() 0 4 1
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