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