BasicAuth   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 4
c 1
b 0
f 0
dl 0
loc 8
ccs 3
cts 3
cp 1
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A getData() 0 4 1
1
<?php
2
3
namespace kalanis\RemoteRequestPsr\Http;
4
5
6
use kalanis\RemoteRequest\Protocols\Http\Query\TAuthBasic;
7
8
9
/**
10
 * Class BasicAuth
11
 * @package kalanis\RemoteRequestPsr\Http
12
 * Message to the remote server compilation - protocol http, uses StreamInterface as body, use basic authentication
13
 */
14
class BasicAuth extends Query
15
{
16
    use TAuthBasic;
17
18 2
    public function getData()
19
    {
20 2
        $this->authHeader();
21 2
        return parent::getData();
22
    }
23
}
24