I always thought that the arguments of a function in PHP should be either a string enclosed by '', or a number, or a variable.
However, looking at this in php.net's manual I see:
public function baz(Test $other)
What does the word Test here refer to?
How is this possible?