MessageB   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
eloc 3
dl 0
loc 7
rs 10
c 1
b 0
f 1
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
3
namespace Zenstruck\Messenger\Test\Tests\Fixture\Messenger;
4
5
/**
6
 * @author Kevin Bond <[email protected]>
7
 */
8
final class MessageB
9
{
10
    public bool $fail;
11
12
    public function __construct(bool $fail = false)
13
    {
14
        $this->fail = $fail;
15
    }
16
}
17