QueryStringValueWrapper::process()   A
last analyzed

Complexity

Conditions 3
Paths 3

Size

Total Lines 15
Code Lines 7

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 12

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 3
eloc 7
c 1
b 0
f 0
nc 3
nop 0
dl 0
loc 15
ccs 0
cts 12
cp 0
crap 12
rs 10
1
<?php
2
3
namespace devtoolboxuk\cerberus\Wrappers;
4
5
class QueryStringValueWrapper extends Base
6
{
7
8
    private $queryArray = [];
9
10
    public function process()
11
    {
12
        $this->initWrapper($this->setLocalName());
13
14
        $this->getQueryString();
15
16
        list($key, $value) = array_pad(explode('|', $this->getReference()), 2, null);
17
18
        if (isset($this->queryArray[$key])) {
19
            if ($this->queryArray[$key] == $value) {
20
                $this->setScore($this->getRealScore());
21
22
            }
23
        }
24
        $this->setResult();
25
    }
26
27
    private function setLocalName()
28
    {
29
        $name = str_replace(__NAMESPACE__ . '\\', '', __CLASS__);
30
        return str_replace('Wrapper', '', $name);
31
    }
32
33
34
    private function getQueryString()
35
    {
36
        if (isset($_SERVER["QUERY_STRING"])) {
37
            parse_str($_SERVER["QUERY_STRING"], $this->queryArray);
38
        }
39
    }
40
41
}