| 1 | <?php |
||
| 15 | class GenericShape extends AbstractShape implements ComparableInterface |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * Create a new \PhpOffice\PhpPresentation\Shape\Ellipse instance |
||
| 19 | * |
||
| 20 | * @param int $fromX |
||
| 21 | * @param int $fromY |
||
| 22 | * @param int $toX |
||
| 23 | * @param int $toY |
||
| 24 | * @param int $rotation which takes the rotation for ellipse |
||
| 25 | */ |
||
| 26 | public function __construct($fromX, $fromY, $toX, $toY, $rotation, $shape) |
||
| 39 | |||
| 40 | /** |
||
| 41 | * Get hash code |
||
| 42 | * |
||
| 43 | * @return string Hash code |
||
| 44 | */ |
||
| 45 | public function getHashCode() |
||
| 49 | |||
| 50 | } |
||
| 51 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.