/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/php/php-507-18-004/main.php
24 строки
504 B
Spirzen
Code migration pack
09 июн 2026, 01:41
09 июн 2026, 01:41
cebc284
Код
Авторство
О чём код?
class Animal { public function makeSound(): string { return "…"; } } class Dog extends Animal { public function makeSound(): string { return "Гав"; } } class Cat extends Animal { public function makeSound(): string { return "Мяу"; } } function announce(Animal $animal): void { echo $animal->makeSound(); } announce(new Dog()); // → "Гав" announce(new Cat()); // → "Мяу"