FluentDOM\Node\MutationMacro::isStringCastable PHP Method

isStringCastable() private static method

private static isStringCastable ( mixed $value ) : boolean
$value mixed
return boolean
    private static function isStringCastable($value)
    {
        return is_scalar($value) || is_object($value) && method_exists($value, '__toString');
    }