PHP: Création d’une classe abstraite

Author:

 classe abstraite
Download

<?php

   abstract class Personnel
   {
      abstract function embauche();
      abstract function licencement();
      abstract function promotion();
      abstract function renvoi();
      abstract function conge();
   }

?>

Leave a Reply

Your email address will not be published. Required fields are marked *


7 − one =