function test(Obj $object)
    {
        var_dump($object);
    }

 

class Obj{}

test(new Obj);