Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
32 | 1 | public function createServer($identifier, $domain, $protocol) |
|
33 | { |
||
34 | 1 | $server = GeneralUtility::makeInstance(Server::class); |
|
35 | 1 | $server->setIdentifier($identifier); |
|
36 | 1 | $server->setDomain($domain); |
|
37 | 1 | $server->setProtocol($protocol); |
|
38 | 1 | $server->setProtocolMarker($this->protocolMarker); |
|
39 | 1 | return $server; |
|
40 | } |
||
42 |