AbstractAssertionAction::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 4
c 0
b 0
f 0
ccs 3
cts 3
cp 1
rs 10
cc 1
nc 1
nop 1
crap 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