AbstractAssertionAction   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 20
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 3
eloc 7
c 1
b 0
f 0
dl 0
loc 20
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A execute() 0 6 2
A __construct() 0 3 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
    public function __construct(LoggerInterface $logger)
26
    {
27
        $this->logger = $logger;
28
    }
29
30
    public function execute(ContextInterface $context)
31
    {
32
        if ($context instanceof AssertionContext) {
33
            $this->doExecute($context);
34
        } else {
35
            throw new LightSamlContextException($context, 'Expected AssertionContext');
36
        }
37
    }
38
39
    abstract protected function doExecute(AssertionContext $context);
40
}
41