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