Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
39 | 3 | public function addListener($type, $functionName) |
|
40 | { |
||
41 | 3 | if (!in_array($type, $this->chart->getAvailableEventTypes())) { |
|
42 | 2 | throw new GoogleChartsException("$type event is not available for this type of chart."); |
|
43 | } |
||
44 | |||
45 | 1 | $this->listeners[] = new Listener($type, $functionName); |
|
46 | 1 | } |
|
47 | |||
56 |