Total Complexity | 3 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
11 | class BorderCommandOption extends AbstractCommandOption |
||
12 | { |
||
13 | /** |
||
14 | * BorderCommandOption constructor. |
||
15 | * @param $stroke |
||
16 | * @param $color |
||
17 | */ |
||
18 | public function __construct($stroke, Color $color) |
||
22 | } |
||
23 | |||
24 | /** |
||
25 | * @return mixed |
||
26 | */ |
||
27 | public function getColor() |
||
28 | { |
||
29 | return $this->get('color'); |
||
30 | } |
||
31 | |||
32 | /** |
||
33 | * @return mixed |
||
34 | */ |
||
35 | public function getStroke() |
||
38 | } |
||
39 | } |
||
40 |