vote up 3 vote down star

Am I missing something or there really is no support for generic object type hinting in PHP 5.x?

I find it really strange that hinting arrays is supported while hinting objects is not, at least not out of the box.

I'd like to have something like this:

function foo(object $o)

Just as we have:

function foo(array $o)

Example of possible use: methods of an objects collection class.

Workaround: using an interface "Object" implemented by all classes or extending all classes from a generic class "Object" and writing something like this:

function foo(Object $o)

Well, that just ain't cute.

Edit: somebody suggested in a deleted post using stdClass. It doesn't work:

Catchable fatal error: Argument 1 passed to c::add() must be an instance of stdClass, instance of b given

flag

Don't use concrete types for type hinting. Either use interfaces, or read about duck typing. – Ionut G. Stan Oct 10 at 11:41
If I'm to walk the no concrete types path I'd rather use is_object(). But that's not the point of this discussion. – Marius Burz Oct 10 at 11:54
1  
Look, PHP is a very inconsistent language, in which objects do not inherit from a single class, like in Java. The fact there's no type hinting for general objects is an oversight indeed, but I think you have to pass this point and prepare for other strange things. – Ionut G. Stan Oct 10 at 12:03
I'm curious, how does this general object type hinting helps you? How is it better than just check that it is_object? – Ionut G. Stan Oct 10 at 12:05
How is array hinting better than is_array()? Since array hinting is supported, I'd expect the same for objects. – Marius Burz Oct 10 at 12:08
show 1 more comment

3 Answers

vote up 0 vote down

Why would you want to hint object when you can hint an actual class name instead - this would be much more useful. Also remember that you can't hint int,float, bool, string or resource either.

link|flag
Why would you want to hit an array? Remember all those other types you can't hint... Since there is no common base class from which all PHP classes descend, it makes sense to be able to hint an object, just as it makes to hint an array. My opinion, but I doubt I'm alone on this one. – Marius Burz Oct 20 at 11:31
vote up 0 vote down check

No, it can't be done. I wasn't missing anything.

link|flag
vote up 2 vote down

Since type hinting should make the client code adapt to your API, your solution with accepting interfaces seems just about right.

Look at it this way: yourMethod(array $input) gives yourMethod() an array to use, thereby you know exactly which native functions that applies and can be used by yourMethod().

If you specify your method like: yourSecondMethod(yourInterface $input) you'd also know which methods that can be applied to $input since you know about/can lookup which set of rules that accompanies the interface yourInterface.

In your case, accepting any object seems wrong, because you don't have any way of knowing which methods to use on the input. Example:

function foo(Object $o) {
    return $o->thisMethodMayOrMayNotExist();
}

(Not implying that syntax is valid)

link|flag
That's not the case for an objects collection class which will be acting as a (pseudo) container that won't be invoking any methods on its children nor will it use any of their attributes / properties. Knowing a variable is an object also makes it possible to use lots of native functions on it, so I don't really see your point. – Marius Burz Oct 10 at 11:42
1  
How about using a type hint such as SplObjectStorage or ArrayObject? – chelmertz Oct 10 at 12:12

Your Answer

Get an OpenID
or

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