Passed
Pull Request — master (#190)
by Dmitriy
04:22 queued 01:36
created

FailureFinalHandler::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 1
CRAP Score 1

Importance

Changes 0
Metric Value
cc 1
eloc 0
nc 1
nop 1
dl 0
loc 2
ccs 1
cts 1
cp 1
crap 1
rs 10
c 0
b 0
f 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Yiisoft\Queue\Middleware;
6
7
use Throwable;
8
9
/**
10
 * @internal Internal package class, please don't use it directly
11
 */
12
final class FailureFinalHandler implements MessageHandlerInterface
13
{
14 2
    public function __construct(private Throwable $exception)
15
    {
16 2
    }
17
18
    /**
19
     * @throws Throwable
20
     */
21 2
    public function handle(Request $request): Request
22
    {
23
        // TODO: Add tests
24
        //throw $request->getException() ?? new \RuntimeException('Message processing failed.');
25 2
        throw $this->exception;
26
    }
27
}
28