Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 12 |
Ratio | 100 % |
Tests | 6 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
56 | 1 | View Code Duplication | public function unsubscribe(callable $handler) |
57 | { |
||
58 | 1 | $index = array_search($handler, $this->handlers); |
|
59 | |||
60 | 1 | if ($index === false) { |
|
61 | 1 | return false; |
|
62 | } |
||
63 | |||
64 | 1 | unset($this->handlers[$index]); |
|
65 | |||
66 | 1 | return true; |
|
67 | } |
||
68 | } |
||
69 |