Completed
Push — master ( 9a7b87...ad20a3 )
by Alessandro
03:07
created

AbnormalTerminatedParser   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 12
ccs 0
cts 4
cp 0
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
declare(strict_types=1);
3
4
namespace Paraunit\Parser\JSON;
5
6
use Paraunit\TestResult\Interfaces\TestResultHandlerInterface;
7
use Paraunit\TestResult\TestResultFactory;
8
9
/**
10
 * Class AbnormalTerminatedParser
11
 * @package Paraunit\Parser\JSON
12
 */
13
class AbnormalTerminatedParser extends GenericParser
14
{
15
    /**
16
     * AbnormalTerminatedParser constructor.
17
     * @param TestResultFactory $testResultFactory
18
     * @param TestResultHandlerInterface $testResultHandler
19
     */
20
    public function __construct(TestResultFactory $testResultFactory, TestResultHandlerInterface $testResultHandler)
21
    {
22
        parent::__construct($testResultFactory, $testResultHandler, LogFetcher::LOG_ENDING_STATUS);
23
    }
24
}
25