Total Complexity | 1 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | trait PointShapeTrait |
||
9 | { |
||
10 | /** |
||
11 | * The shape of individual data elements: 'circle', 'triangle', 'square', 'diamond', 'star', or 'polygon'. |
||
12 | * |
||
13 | * Default: 'circle' |
||
14 | * |
||
15 | * @var string |
||
16 | */ |
||
17 | protected $pointShape; |
||
18 | |||
19 | /** |
||
20 | * @return $this |
||
21 | */ |
||
22 | 1 | public function setPointShape(string $pointShape) |
|
29 |