AuthDigest::getData()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 2
nc 1
nop 0
dl 0
loc 4
rs 10
c 1
b 0
f 0
ccs 3
cts 3
cp 1
crap 1
1
<?php
2
3
namespace kalanis\RemoteRequest\Protocols\Http\Query;
4
5
6
use kalanis\RemoteRequest\Protocols\Http;
7
8
9
/**
10
 * Class AuthDigest
11
 * @package kalanis\RemoteRequest\Protocols\Http\Query
12
 * Message to the remote server compilation - protocol http
13
 */
14
class AuthDigest extends Http\Query
15
{
16
    use TAuthDigest;
17
18 1
    public function getData()
19
    {
20 1
        $this->authHeader();
21 1
        return parent::getData();
22
    }
23
}
24