Total Complexity | 2 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class DoubleCoordinateCommandOption extends SingleCoordinateCommandOption |
||
12 | { |
||
13 | /** |
||
14 | * @var integer |
||
15 | */ |
||
16 | protected $x2; |
||
17 | |||
18 | /** |
||
19 | * @var integer |
||
20 | */ |
||
21 | protected $y2; |
||
22 | |||
23 | /** |
||
24 | * DoubleCoordinateCommandOption constructor. |
||
25 | * @param Coordinate $coord1 |
||
26 | * @param Coordinate $coord2 |
||
27 | */ |
||
28 | public function __construct(Coordinate $coord1, Coordinate $coord2) |
||
32 | } |
||
33 | |||
34 | /** |
||
35 | * @return mixed |
||
36 | */ |
||
37 | public function getCoordinate2() |
||
42 |