function DataProviderHelper::getDataProviderAnnotationValue
1 call to DataProviderHelper::getDataProviderAnnotationValue()
- DataProviderHelper::getDataProviderMethods in vendor/
phpstan/ phpstan-phpunit/ src/ Rules/ PHPUnit/ DataProviderHelper.php - *
File
-
vendor/
phpstan/ phpstan-phpunit/ src/ Rules/ PHPUnit/ DataProviderHelper.php, line 206
Class
Namespace
PHPStan\Rules\PHPUnitCode
private function getDataProviderAnnotationValue(PhpDocTagNode $phpDocTag) : ?string {
if (preg_match('/^[^ \\t]+/', (string) $phpDocTag->value, $matches) !== 1) {
return null;
}
return $matches[0];
}