Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
20 | public function execute(Image $image) |
||
21 | { |
||
22 | /** @var DoubleCoordinateColorCommandOption $options */ |
||
23 | $options = $this->options; |
||
24 | $color = ColorUtils::colorIdentifier($image->getResource(), $options->getColor()); |
||
25 | imageline($image->getResource(), |
||
26 | $options->getCoordinate1()->getX(), |
||
27 | $options->getCoordinate1()->getY(), |
||
28 | $options->getCoordinate2()->getX(), |
||
29 | $options->getCoordinate2()->getY(), $color |
||
30 | ); |
||
31 | |||
32 | return $image; |
||
33 | } |
||
35 |