IsAExpectation::canonicalType PHP Method

canonicalType() protected method

Coerces type name into a is_*() match.
protected canonicalType ( string $type ) : string
$type string User type.
return string Simpler type.
    protected function canonicalType($type)
    {
        $type = strtolower($type);
        $map = array('boolean' => 'bool');
        if (isset($map[$type])) {
            $type = $map[$type];
        }
        return $type;
    }