Test Setup Failed
Push — master ( 246aa3...2d0e6f )
by Alexpts
01:50
created

TcpSocket   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Test Coverage

Coverage 80%

Importance

Changes 0
Metric Value
wmc 2
lcom 1
cbo 1
dl 0
loc 15
ccs 4
cts 5
cp 0.8
rs 10
c 0
b 0
f 0
1
<?php
2
declare(strict_types=1);
3
4
namespace PTS\Transport\Tcp;
5
6
use PTS\Transport\Socket;
7
8
class TcpSocket extends Socket
9
{
10
    protected string $schema = 'tcp://';
0 ignored issues
show
Bug introduced by
This code did not parse for me. Apparently, there is an error somewhere around this line:

Syntax error, unexpected T_STRING, expecting T_FUNCTION or T_CONST
Loading history...
11
}
12