Created
July 19, 2013 12:01
-
-
Save tamboer/6038649 to your computer and use it in GitHub Desktop.
php type hinting
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
| <?php | |
| // An example class | |
| class MyClass | |
| { | |
| /** | |
| * A test function | |
| * | |
| * First parameter must be an object of type OtherClass | |
| */ | |
| public function test(OtherClass $otherclass) { | |
| echo $otherclass->var; | |
| } | |
| /** | |
| * Another test function | |
| * | |
| * First parameter must be an array | |
| */ | |
| public function test_array(array $input_array) { | |
| print_r($input_array); | |
| } | |
| /** | |
| * First parameter must be iterator | |
| */ | |
| public function test_interface(Traversable $iterator) { | |
| echo get_class($iterator); | |
| } | |
| /** | |
| * First parameter must be callable | |
| */ | |
| public function test_callable(callable $callback, $data) { | |
| call_user_func($callback, $data); | |
| } | |
| } | |
| // Another example class | |
| class OtherClass { | |
| public $var = 'Hello World'; | |
| } | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment