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

ScatterChartOptions   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 3

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
lcom 0
cbo 3
dl 0
loc 14
rs 10
c 1
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 6 1
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