Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

Completed
Push — main ( 10f5c7...a0aba6 )
by Dan
24s queued 19s
created

Message::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 7
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 0
nc 1
nop 5
dl 0
loc 7
rs 10
c 1
b 0
f 0
1
<?php declare(strict_types=1);
2
3
namespace Smr\Irc;
4
5
/**
6
 * Data storage class for components of an IRC message.
7
 * Intended for use with PRIVMSG message types.
8
 */
9
class Message {
10
11
	public function __construct(
12
		public readonly string $nick,
13
		public readonly string $user,
14
		public readonly string $host,
15
		public readonly string $channel,
16
		public readonly string $text,
17
	) {}
18
19
}
20