| Total Complexity | 1 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | class Quadrangle extends Geometrable |
||
| 8 | { |
||
| 9 | |||
| 10 | /** |
||
| 11 | * @var int |
||
| 12 | */ |
||
| 13 | protected $numberPoints = 4; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @param Coordinate $center |
||
| 17 | * @param float $dx |
||
| 18 | * @param float $dy |
||
| 19 | * |
||
| 20 | * @return static |
||
| 21 | */ |
||
| 22 | public static function makeWithXY(Coordinate $center, float $dx, float $dy): self |
||
| 33 |