AbstractAssertionAction   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 30
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
dl 0
loc 30
c 0
b 0
f 0
wmc 3
lcom 0
cbo 1
ccs 8
cts 8
cp 1
rs 10

3 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
A execute() 0 8 2
doExecute() 0 1 ?
1
<?php
2
3
/*
4
 * This file is part of the LightSAML-Core package.
5
 *
6
 * (c) Milos Tomic <[email protected]>
7
 *
8
 * This source file is subject to the MIT license that is bundled
9
 * with this source code in the file LICENSE.
10
 */
11
12
namespace LightSaml\Action\Assertion;
13
14
use LightSaml\Action\ActionInterface;
15
use LightSaml\Context\ContextInterface;
16
use LightSaml\Context\Profile\AssertionContext;
17
use LightSaml\Error\LightSamlContextException;
18
use Psr\Log\LoggerInterface;
19
20
abstract class AbstractAssertionAction implements ActionInterface
21
{
22
    /** @var LoggerInterface */
23
    protected $logger;
24
25
    /**
26
     * @param LoggerInterface $logger
27
     */
28 34
    public function __construct(LoggerInterface $logger)
29
    {
30 34
        $this->logger = $logger;
31 34
    }
32
33
    /**
34
     * @param ContextInterface $context
35
     */
36 26
    public function execute(ContextInterface $context)
37
    {
38 26
        if ($context instanceof AssertionContext) {
39 25
            $this->doExecute($context);
40
        } else {
41 1
            throw new LightSamlContextException($context, 'Expected AssertionContext');
42
        }
43 13
    }
44
45
    /**
46
     * @param AssertionContext $context
47
     */
48
    abstract protected function doExecute(AssertionContext $context);
49
}
50