/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/php/php-507-18-003/main.php
20 строк
492 B
Spirzen
Code migration pack
09 июн 2026, 01:41
09 июн 2026, 01:41
cebc284
Код
Авторство
О чём код?
class Shape { public function getArea(): float { return 0.0; } } class Rectangle extends Shape { private float $width; private float $height; public function __construct(float $width, float $height) { $this->width = $width; $this->height = $height; } // Ковариантность: float → float (допустимо, тип не сужен) public function getArea(): float { return $this->width * $this->height; } }