PHP Classes

File: StrictString.php

Recommend this page to a friend!
  Classes of Martin Alterisio   Type Hint Class   StrictString.php   Download  
File: StrictString.php
Role: Class source
Content type: text/plain
Description: StrictString TypeHint
Class: Type Hint Class
Implement type hinting support for base PHP types
Author: By
Last change: Accessible without user login
Date: 16 years ago
Size: 602 bytes
 

Contents

Class file image Download
<?php
/**
 * @package typehintclass
 */

/**
 * Type hint class for values that are native php strings.
 */
final class StrictString implements TypeHint {
   
/**
     * Type hint class, cannot be instantiated nor extended.
     */
   
private function __construct() { }
   
   
/**
     * 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) {
        return
is_string($value);
    }
}
?>