Created
January 5, 2016 03:41
-
-
Save EnragedSuccubus/1216b6ac9d18d2cbdddb to your computer and use it in GitHub Desktop.
PHP Interfaces ex01
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Automobile interface | |
| * | |
| * Creates a contract that any class implementing this interface must abide by | |
| */ | |
| interface Automobile { | |
| /** | |
| * steering_wheel function | |
| * | |
| * @access public | |
| * @return void | |
| */ | |
| public function steering_wheel() {} | |
| /** | |
| * wheels function | |
| * | |
| * @access public | |
| * @return void | |
| */ | |
| public function wheels() {} | |
| ... | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment