Define abstract class
<?php abstract class Staff { abstract function hire(); abstract function fire(); abstract function promote(); abstract function demote(); } ?>
1. | abstract class demo | ||
2. | Using Abstract Classes and Methods | ||
3. | Using Abstract Classes in PHP 5 | ||
4. | abstract keyword is used to say that a method or class cannot be created in your program as it stands |