Total Complexity | 2 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
12 | class TextCommandOption extends SingleCoordinateColorCommandOption |
||
13 | { |
||
14 | /** |
||
15 | * TextCommandOption constructor. |
||
16 | * @param Text $text |
||
17 | * @param Coordinate $coordinate |
||
18 | */ |
||
19 | public function __construct(Text $text, Coordinate $coordinate) |
||
20 | { |
||
21 | parent::__construct($coordinate, $text->getColor()); |
||
22 | $this->add('text', $text); |
||
23 | } |
||
24 | |||
25 | /** |
||
26 | * @return mixed |
||
27 | */ |
||
28 | public function getText() |
||
31 | } |
||
32 | } |
||
33 |