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   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 7 1
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