PolarAreaChart   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 6
c 0
b 0
f 0
wmc 1
lcom 0
cbo 1
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A chartType() 0 3 1
1
<?php
2
namespace rtens\domin\delivery\web\renderers\charting\charts;
3
4
class PolarAreaChart extends PieChart {
5
6
    public function chartType() {
7
        return 'PolarArea';
8
    }
9
}