PipeExecutionFinished   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 2 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace MichaelRubel\EnhancedPipeline\Events;
6
7
class PipeExecutionFinished
8
{
9
    /**
10
     * @param  mixed  $pipe
11
     * @param  mixed  $passable
12
     */
13 2
    public function __construct(public $pipe, public $passable)
14
    {
15
        //
16 2
    }
17
}
18