Total Complexity | 4 |
Total Lines | 50 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
12 | class BubbleDataSet extends DataSet |
||
13 | { |
||
14 | /** |
||
15 | * @var string |
||
16 | */ |
||
17 | protected $pointStyle; |
||
18 | |||
19 | /** |
||
20 | * @var int |
||
21 | */ |
||
22 | protected $radius; |
||
23 | |||
24 | /** |
||
25 | * @return string |
||
26 | */ |
||
27 | public function getPointStyle() |
||
28 | { |
||
29 | return $this->pointStyle; |
||
30 | } |
||
31 | |||
32 | /** |
||
33 | * @param string $pointStyle |
||
34 | * |
||
35 | * @return \Halfpastfour\PHPChartJS\DataSet\BubbleDataSet |
||
36 | */ |
||
37 | public function setPointStyle($pointStyle) |
||
42 | } |
||
43 | |||
44 | /** |
||
45 | * @return int|null |
||
46 | */ |
||
47 | public function getRadius() |
||
48 | { |
||
49 | return $this->radius; |
||
50 | } |
||
51 | |||
52 | /** |
||
53 | * @param int $radius |
||
54 | * |
||
55 | * @return \Halfpastfour\PHPChartJS\DataSet\BubbleDataSet |
||
56 | */ |
||
57 | public function setRadius($radius) |
||
62 | } |
||
63 | } |
||
64 |