<?php
/**
* @package typehintclass
*/
/**
* An interface to classes that stand for objects of another type.
*/
interface TypeHint {
/**
* Indicates if this class represents a type hint for provided value.
* @param mixed $value The value.
* @return bool True if this class represents a type hint for that value.
*/
public static function isTypeHintFor($value);
}
?>
|