TerminateEvent   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 5
ccs 0
cts 2
cp 0
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php declare(strict_types=1);
2
3
/*
4
 * This file is part of Biurad opensource projects.
5
 *
6
 * @copyright 2019 Biurad Group (https://biurad.com/)
7
 * @license   https://opensource.org/licenses/BSD-3-Clause License
8
 *
9
 * For the full copyright and license information, please view the LICENSE
10
 * file that was distributed with this source code.
11
 */
12
13
namespace Flange\Event;
14
15
use Flange\Application;
16
use Psr\Http\Message\ServerRequestInterface as Request;
17
18
/**
19
 * Allows to execute logic after a response was sent.
20
 *
21
 * @author Divine Niiquaye Ibok <[email protected]>
22
 */
23
final class TerminateEvent extends KernelEvent
24
{
25
    public function __construct(Application $kernel, Request $request)
26
    {
27
        parent::__construct($kernel, $request);
28
    }
29
}
30