NoAuthentication   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
eloc 2
dl 0
loc 9
rs 10
c 1
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A getHeaders() 0 3 1
1
<?php
2
3
4
namespace Dolibarr\Client\Security\Authentication;
5
6
use Dolibarr\Client\Domain\Authentication\Header;
7
8
final class NoAuthentication implements Authentication
9
{
10
11
    /**
12
     * @return array|Header[]
13
     */
14
    public function getHeaders()
15
    {
16
        return [];
17
    }
18
}
19