Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
Why the hell are people downvoting this ? Stupids... – Panique Jan 2 at 16:45

1 Answer

up vote 9 down vote accepted

That means the argument must be an object of the class Comment. If an argument which is not a Comment object is passed in, PHP will raise an error.

This feature is called "type hinting".

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.