Passed
Push — master ( b3dc0d...3f2c08 )
by Luiz Kim
13:42 queued 11:26
created

PushMessage::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 0
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 2
1
<?php
2
3
namespace ControleOnline\Message;
4
5
class PushMessage
6
{
7
    public function __construct(
8
        public readonly string $topic,
9
        public readonly array $data
10
    ) {
11
    }
12
}
13