Completed
Push — master ( 213ff5...145f4e )
by Laurent
02:44
created

NoAuthentication::getHeaders()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
dl 0
loc 3
rs 10
c 1
b 0
f 0
cc 1
nc 1
nop 0
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