GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — code-issues ( 50053e...90a6d8 )
by Alex
05:10
created

UnicastRouter   A

Complexity

Total Complexity 8

Size/Duplication

Total Lines 62
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 4

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 8
c 1
b 0
f 0
lcom 1
cbo 4
dl 0
loc 62
ccs 22
cts 22
cp 1
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 9 1
C route() 0 23 7
1
<?php
2
namespace PSB\Core\Routing;
3
4
5
use PSB\Core\SendOptions;
6
use PSB\Core\Transport\Config\TransportInfrastructure;
7
8
class UnicastRouter implements UnicastRouterInterface
9
{
10
    /**
11
     * @var string
12
     */
13
    private $localAddress;
14
15
    /**
16
     * @var UnicastRoutingTable
17
     */
18
    private $unicastRoutingTable;
19
20
    /**
21
     * @var TransportInfrastructure
22
     */
23
    private $transportInfrastructure;
24
25
    /**
26
     * @param string                  $localAddress
27
     * @param UnicastRoutingTable     $unicastRoutingTable
28
     * @param TransportInfrastructure $transportInfrastructure
29
     */
30 5
    public function __construct(
31
        $localAddress,
32
        UnicastRoutingTable $unicastRoutingTable,
33
        TransportInfrastructure $transportInfrastructure
34
    ) {
35 5
        $this->localAddress = $localAddress;
36 5
        $this->unicastRoutingTable = $unicastRoutingTable;
37 5
        $this->transportInfrastructure = $transportInfrastructure;
38 5
    }
39
40
    /**
41
     * @param SendOptions $options
42
     * @param string      $messageClass
43
     *
44
     * @return AddressTagInterface[]
45
     */
46 4
    public function route(SendOptions $options, $messageClass)
47
    {
48 4
        $destination = $options->isRoutedToLocalInstance() ? $this->localAddress : null;
49 4
        $destination = $options->getExplicitDestination() ?: $destination;
50
51 4
        if ($destination === null || $destination === '') {
52 1
            $messageTypes = array_merge([$messageClass], array_values(class_implements($messageClass, true)));
53 1
            $endpointNames = $this->unicastRoutingTable->getEndpointNamesFor($messageTypes);
54 1
            $destinations = [];
55 1
            foreach ($endpointNames as $endpointName) {
56 1
                $destinations[] = $this->transportInfrastructure->toTransportAddress($endpointName);
57 1
            }
58 1
        } else {
59 3
            $destinations = [$destination];
60
        }
61
62 4
        $addressTags = [];
63 4
        foreach ($destinations as $destination) {
64 4
            $addressTags[] = new UnicastAddressTag($destination);
65 4
        }
66
67 4
        return $addressTags;
68
    }
69
}
70