Passed
Push — master ( 989659...d90b52 )
by Damien
04:23
created

SecurityProvider::__invoke()   A

Complexity

Conditions 3
Paths 3

Size

Total Lines 14
Code Lines 8

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 3
eloc 8
c 0
b 0
f 0
nc 3
nop 0
dl 0
loc 14
rs 10
1
<?php
2
3
namespace DH\AuditorBundle\Security;
4
5
use DH\Auditor\Security\SecurityProviderInterface;
0 ignored issues
show
Bug introduced by
The type DH\Auditor\Security\SecurityProviderInterface was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
6
use Symfony\Bundle\SecurityBundle\Security\FirewallMap;
7
use Symfony\Component\HttpFoundation\RequestStack;
8
9
class SecurityProvider implements SecurityProviderInterface
10
{
11
    private $requestStack;
12
    private $firewallMap;
13
14
    public function __construct(RequestStack $requestStack, FirewallMap $firewallMap)
15
    {
16
        $this->requestStack = $requestStack;
17
        $this->firewallMap = $firewallMap;
18
    }
19
20
    public function __invoke(): array
21
    {
22
        $clientIp = null;
23
        $firewallName = null;
24
25
        $request = $this->requestStack->getCurrentRequest();
26
        if (null !== $request) {
27
            $firewallConfig = $this->firewallMap->getFirewallConfig($request);
28
29
            $clientIp = $request->getClientIp();
30
            $firewallName = null === $firewallConfig ? null : $firewallConfig->getName();
31
        }
32
33
        return [$clientIp, $firewallName];
34
    }
35
}
36