Passed
Pull Request — master (#38)
by Christophe
02:38
created

ComboChart::getType()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
ccs 0
cts 2
cp 0
crap 2
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace CMEN\GoogleChartsBundle\GoogleCharts\Charts;
4
5
use CMEN\GoogleChartsBundle\GoogleCharts\Chart;
6
use CMEN\GoogleChartsBundle\GoogleCharts\EventType;
7
use CMEN\GoogleChartsBundle\GoogleCharts\Options\ComboChart\ComboChartOptions;
8
9
/**
10
 * @author Christophe Meneses
11
 */
12
class ComboChart extends Chart
13
{
14
    /**
15
     * @var ComboChartOptions
16
     */
17
    protected $options;
18
19 1
    public function __construct()
20
    {
21 1
        parent::__construct();
22
23 1
        $this->options = new ComboChartOptions();
24 1
    }
25
26
    public function getType()
27
    {
28
        return 'ComboChart';
29
    }
30
31
    public function getPackage()
32
    {
33
        return 'corechart';
34
    }
35
36 1
    public function getAvailableEventTypes()
37
    {
38
        return [
39 1
            EventType::ANIMATION_FINISH,
40
            EventType::CLICK,
41
            EventType::ERROR,
42
            EventType::ON_MOUSE_OUT,
43
            EventType::ON_MOUSE_OVER,
44
            EventType::READY,
45
            EventType::SELECT,
46
        ];
47
    }
48
49
    /**
50
     * @return ComboChartOptions
51
     */
52
    public function getOptions()
53
    {
54
        return $this->options;
55
    }
56
57
    /**
58
     * @param ComboChartOptions $options
59
     *
60
     * @return ComboChart
61
     */
62
    public function setOptions($options)
63
    {
64
        $this->options = $options;
65
66
        return $this;
67
    }
68
}
69