| 1 | <?php |
||
| 19 | class RoundRectangle extends AbstractShape implements ComparableInterface |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * Create a new \PhpOffice\PhpPresentation\Shape\RoundRectangle instance |
||
| 23 | * |
||
| 24 | * @param int $fromX |
||
| 25 | * @param int $fromY |
||
| 26 | * @param int $toX |
||
| 27 | * @param int $toY |
||
| 28 | * @param int $rotation which takes the rotation for the rounded rectangle |
||
| 29 | */ |
||
| 30 | public function __construct($fromX, $fromY, $toX, $toY, $rotation) |
||
| 41 | |||
| 42 | /** |
||
| 43 | * Get hash code |
||
| 44 | * |
||
| 45 | * @return string Hash code |
||
| 46 | */ |
||
| 47 | public function getHashCode() |
||
| 51 | |||
| 52 | } |
||
| 53 |