Skip to content

Instantly share code, notes, and snippets.

@jenovateurs
Created December 1, 2019 11:16
Show Gist options
  • Select an option

  • Save jenovateurs/e174cd85c7a318f014e5f712bffa8bee to your computer and use it in GitHub Desktop.

Select an option

Save jenovateurs/e174cd85c7a318f014e5f712bffa8bee to your computer and use it in GitHub Desktop.
Nouveauté PHP 7.4 - Typage du retour covariant
<?php
class Voiture {}
class Sport extends Voiture {}
class Consommateur {
public function achat(): Voiture {}
}
class Sportif extends Consommateur {
public function achat(): Sport {}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment