i've just seen this strange thing in a tutorial, but cannot figure out what this "Comment" within the variables-brackets stands for. Do you know ?
public function addComment(Comment $comment) { ..... }
cheers
|
|
That means the argument must be an object of the class This feature is called "type hinting". |
|||
|
|