Is it possible to define the return type like:
public static function bool Test($value)
{
return $value; //this value will be bool
}
I need this because I need to return the interface of a instantiated class.
Thanks in advance
------------------EDIT------------------
PHP wont let me define the return type..I cannot cast is too....
Thanks everyone.... =)
