PhpCsFixer\Fixer\NamespaceNotation\NoLeadingNamespaceWhitespaceFixer::endsWithWhitespace PHP Method

endsWithWhitespace() private static method

private static endsWithWhitespace ( $str )
    private static function endsWithWhitespace($str)
    {
        if ('' === $str) {
            return false;
        }
        return '' === trim(substr($str, -1));
    }