Define abstract class : abstract : Class PHP Source Code


PHP Source Code » Class » abstract »

 

Define abstract class



<?php

   abstract class Staff
   {
      abstract function hire();
      abstract function fire();
      abstract function promote();
      abstract function demote();
   }

?>


           
       



HTML code for linking to this page:

Follow Navioo On Twitter

PHP Source Code

 Navioo Class
» abstract