Type hinting for any object

PhpType Hinting

Php Problem Overview


I've been working on code that's intended to be used with objects, without really caring what the kind of object is. I wanted to type hint that the method being written expected an object of any type, but ran into some difficulty.

I tried function myFunc (object $obj) and function myFunc (stdClass $obj) but both of these generated errors when I tried to pass objects in:

> Catchable fatal error: Argument 1 passed to MyClass::MyFunc() must be an instance of object, instance of ObjectActualClass given

The same happened with stdClass as well

What am I missing? I thought that all classes that didn't explicitly inherit from another class inherited from stdClass, meaning that the base class of every class in PHP would be stdClass. Is this not the case?

Php Solutions


Solution 1 - Php

stdClass is NOT a base class! PHP classes do not automatically inherit from any class. All classes are standalone, unless they explicitly extend another class. PHP differs from many object-oriented languages in this respect.

Solution 2 - Php

The best way to enforce this would be to create a degenerate interface called Object. A degenerate interface means it has no defined methods.

interface Object {

   // leave blank

}

Then in your base classes, you can implement Object.

class SomeBase implements Object {

   // your implementation

}

You can now call your function as you wanted to

function myFunc (Object $obj);

myFunc($someBase);

If you pass any object which inherits from your Object interface, this type hint will pass. If you pass in an array, int, string etc, the type hint will fail.

Solution 3 - Php

Well it only took eight years, but this will soon be possible: PHP 7.2 introduces the object type hint! As I write this, it's currently in the RFC stage, and is due to be released in November.

Update, 30th November: PHP 7.2 has been released

RFC: Object typehint

Discussion

This behaves exactly as you might expect:

<?php

class Foo {}
class Bar {}

function takeObject(object $obj) {
    var_dump(get_class($obj));
}

takeObject(new Foo);
takeObject(new Bar);
takeObject('not an object');

Will result in:

> string(3) "Foo" > > string(3) "Bar" > > Fatal error: Uncaught TypeError: Argument 1 passed to takeObject() must be an object, string given, called in...

See https://3v4l.org/Svuij

One side-effect of this is that object is now a reserved word, which unfortunately renders @Gaz_Edge's existing solution above broken. Fortunately, all you have to do to fix it is delete the interface.

Solution 4 - Php

Although there is no type hinting for objects, you can use:

if (!is_object($arg)) {
    return;
}

Solution 5 - Php

There is no base class that all objects extend from. You should just remove the typehint and document the expected type in the @param annotation.

Solution 6 - Php

There is no built-in mechanism to do this without requiring all users of your interface to extend a specified class. But why would you want to do this anyway? What do all object types have in common that's enough to make them suitable input for your API?

In all probability you wouldn't gain anything even if able to type hint like this. On the other hand, type hinting a parameter to implement an interface (such as Traversable) would be much more meaningful.

If you still want something akin to type hinting, the best you can do is substitute a runtime check with is_object on the parameter.

Solution 7 - Php

As of php 7.2 this feature has now been implemented. you can type hint for any object now.

function myFunc(Object $myObject) : Object {
    return $myObject;
}

You can review this in the official documentation

Solution 8 - Php

Typehint for stdClass works since PHP 5.3+ (if I am not wrong). Following is valid code using typehint for stdClass construct:

Example test.php:

class Test{
	function hello(stdClass $o){
		echo $o->name;
	}
}

class Arg2 extends stdClass{
	public $name = 'John';
	function sayHello(){
		echo 'Hello world!';
	}
}

$Arg1 = new stdClass();
$Arg1->name = 'Peter';

$Arg2 = new Arg2();
$Arg2->sayHello();

$test = new Test();

// OK
$test->hello($Arg1);
$test->hello($Arg2);

// fails
$test->hello(1);

Prints out:

> Hello world!
> Peter
> John > > Catchable fatal error: Argument 1 passed to Test::hello() must be an instance of stdClass, integer given, called in test.php on line 32 and defined in test.php on line 5

Solution 9 - Php

You could do something like this:

function myFunc ($obj)
{
     if ($obj instanceof stdClass) { .... }
}

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionGordonMView Question on Stackoverflow
Solution 1 - PhpAbdullahView Answer on Stackoverflow
Solution 2 - PhpGWedView Answer on Stackoverflow
Solution 3 - PhpiainnView Answer on Stackoverflow
Solution 4 - PhpBenView Answer on Stackoverflow
Solution 5 - PhpNikiCView Answer on Stackoverflow
Solution 6 - PhpJonView Answer on Stackoverflow
Solution 7 - PhpOphidianView Answer on Stackoverflow
Solution 8 - PhplubosdzView Answer on Stackoverflow
Solution 9 - PhpAlon EitanView Answer on Stackoverflow