function NamespaceHelper::isQualifiedName
2 calls to NamespaceHelper::isQualifiedName()
- ReferenceUsedNamesOnlySniff::process in vendor/
slevomat/ coding-standard/ SlevomatCodingStandard/ Sniffs/ Namespaces/ ReferenceUsedNamesOnlySniff.php - * @phpcsSuppress SlevomatCodingStandard.TypeHints.ParameterTypeHint.MissingNativeTypeHint *
- UseOnlyWhitelistedNamespacesSniff::process in vendor/
slevomat/ coding-standard/ SlevomatCodingStandard/ Sniffs/ Namespaces/ UseOnlyWhitelistedNamespacesSniff.php - * @phpcsSuppress SlevomatCodingStandard.TypeHints.ParameterTypeHint.MissingNativeTypeHint *
File
-
vendor/
slevomat/ coding-standard/ SlevomatCodingStandard/ Helpers/ NamespaceHelper.php, line 139
Class
- NamespaceHelper
- Terms "unqualified", "qualified" and "fully qualified" have the same meaning as described here: http://php.net/manual/en/language.namespaces.rules.php
Namespace
SlevomatCodingStandard\HelpersCode
public static function isQualifiedName(string $name) : bool {
return strpos($name, self::NAMESPACE_SEPARATOR) !== false;
}