Completed
Push — master ( f6145a...ab3b35 )
by Christophe
02:20
created

ScatterChartOptions::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
dl 0
loc 6
rs 9.4285
c 1
b 0
f 0
cc 1
eloc 3
nc 1
nop 0
1
<?php
2
3
namespace CMEN\GoogleChartsBundle\GoogleCharts\Options\ScatterChart\Material;
4
5
use CMEN\GoogleChartsBundle\GoogleCharts\Options\Material\Chart;
6
use CMEN\GoogleChartsBundle\GoogleCharts\Options\Material\MaterialTrait;
7
8
/**
9
 * Class ScatterChartOptions
10
 *
11
 * @author Christophe Meneses
12
 */
13
class ScatterChartOptions extends \CMEN\GoogleChartsBundle\GoogleCharts\Options\ScatterChart\ScatterChartOptions
14
{
15
    use MaterialTrait;
16
17
    /**
18
     * ScatterChartOptions constructor.
19
     */
20
    public function __construct()
21
    {
22
        parent::__construct();
23
24
        $this->chart = new Chart();
25
    }
26
}
27