RouterComposite::erase()   A
last analyzed

Complexity

Conditions 2
Paths 2

Size

Total Lines 7
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 4
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 7
ccs 4
cts 4
cp 1
rs 9.4285
c 0
b 0
f 0
cc 2
eloc 3
nc 2
nop 0
crap 2
1
<?php
2
3
namespace Dazzle\Channel\Router;
4
5
use Dazzle\Channel\Protocol\ProtocolInterface;
6
use Dazzle\Throwable\Exception\Logic\ResourceUndefinedException;
7
8
class RouterComposite implements RouterCompositeInterface
9
{
10
    /**
11
     * @var RouterInterface[]|RouterCompositeInterface[]
12
     */
13
    protected $bus;
14
15
    /**
16
     * @param RouterInterface[]|RouterCompositeInterface[] $bus
17
     */
18 15
    public function __construct($bus = [])
19
    {
20 15
        $this->bus = [];
21
22 15
        foreach ($bus as $name=>$router)
23
        {
24 9
            $this->setBus($name, $router);
25
        }
26 15
    }
27
28
    /**
29
     *
30
     */
31 19
    public function __destruct()
32
    {
33 19
        unset($this->bus);
34 19
    }
35
36
    /**
37
     * @override
38
     * @inheritDoc
39
     */
40 5
    public function existsBus($name)
41
    {
42 5
        return isset($this->bus[$name]);
43
    }
44
45
    /**
46
     * @override
47
     * @inheritDoc
48
     */
49 2 View Code Duplication
    public function getBus($name)
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
50
    {
51 2
        if (!isset($this->bus[$name]))
52
        {
53 1
            throw new ResourceUndefinedException(__CLASS__ . " has no registered bus $name.");
54
        }
55
56 1
        return $this->bus[$name];
57
    }
58
59
    /**
60
     * @override
61
     * @inheritDoc
62
     */
63 10
    public function setBus($name, $router)
64
    {
65 10
        $this->bus[$name] = $router;
66
67 10
        return $this;
68
    }
69
70
    /**
71
     * @override
72
     * @inheritDoc
73
     */
74 2
    public function removeBus($name)
75
    {
76 2
        if (isset($this->bus[$name]))
77
        {
78 1
            unset($this->bus[$name]);
79
        }
80
81 2
        return $this;
82
    }
83
84
    /**
85
     * @override
86
     * @inheritDoc
87
     */
88 1
    public function getBuses()
89
    {
90 1
        return $this->bus;
91
    }
92
93
    /**
94
     * @override
95
     * @inheritDoc
96
     */
97 1
    public function handle($name, ProtocolInterface $protocol, $flags = 0, callable $success = null, callable $failure = null, callable $cancel = null, $timeout = 0.0)
98
    {
99 1
        $handled = false;
100
101 1
        foreach ($this->bus as $name=>$router)
102
        {
103 1
            if ($router->handle($name, $protocol, $flags, $success, $failure, $cancel, $timeout))
104
            {
105 1
                $handled = true;
106
            }
107
        }
108
109 1
        return $handled;
110
    }
111
112
    /**
113
     * @override
114
     * @inheritDoc
115
     */
116 1
    public function erase()
117
    {
118 1
        foreach ($this->bus as $name=>$router)
119
        {
120 1
            $router->erase();
121
        }
122 1
    }
123
124
    /**
125
     * @override
126
     * @inheritDoc
127
     */
128 1 View Code Duplication
    public function addRule(callable $matcher, callable $handler, $propagate = false, $limit = 0)
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
129
    {
130 1
        $handlers = [];
131
132 1
        foreach ($this->bus as $bus=>$router)
133
        {
134 1
            $handlers[] = $router->addRule($matcher, $handler, $propagate, $limit);
135
        }
136
137 1
        return $handlers;
138
    }
139
140
    /**
141
     * @override
142
     * @inheritDoc
143
     */
144 1 View Code Duplication
    public function addDefault(callable $handler, $propagate = false, $limit = 0)
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
145
    {
146 1
        $handlers = [];
147
148 1
        foreach ($this->bus as $bus=>$router)
149
        {
150 1
            $handlers[] = $router->addDefault($handler, $propagate, $limit);
151
        }
152
153 1
        return $handlers;
154
    }
155
}
156