Download stevebauman / php-cs-fixer / PhpdocTypesFixer.php - Solve class 'PhpdocTypesFixer' not found
This file is part of the package stevebauman/php-cs-fixer.
Please go to our download page to download this composer package and to solve the problem class 'PhpdocTypesFixer' not found.
Download stevebauman/php-cs-fixer
Class is not correct?
Search class PhpdocTypesFixer
<?php
declare(strict_types=1);
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <fabien@symfony.com>
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace PhpCsFixer\Fixer\Phpdoc;
use PhpCsFixer\AbstractPhpdocTypesFixer;
use PhpCsFixer\DocBlock\TypeExpression;
use PhpCsFixer\Fixer\ConfigurableFixerInterface;
use PhpCsFixer\FixerConfiguration\AllowedValueSubset;
use PhpCsFixer\FixerConfiguration\FixerConfigurationResolver;
use PhpCsFixer\FixerConfiguration\FixerConfigurationResolverInterface;
use PhpCsFixer\FixerConfiguration\FixerOptionBuilder;
use PhpCsFixer\FixerDefinition\CodeSample;
use PhpCsFixer\FixerDefinition\FixerDefinition;
use PhpCsFixer\FixerDefinition\FixerDefinitionInterface;
use PhpCsFixer\Preg;
/**
* @author Graham Campbell <hello@gjcampbell.co.uk>
* @author Dariusz Rumiński <dariusz.ruminski@gmail.com>
*/
final class PhpdocTypesFixer extends AbstractPhpdocTypesFixer implements ConfigurableFixerInterface
{
/**
* Available types, grouped.
*
* @var array<string,string[]>
*/
private const POSSIBLE_TYPES = [
'simple' => [
'array',
'bool',
'callable',
'float',
'int',
'iterable',
'null',
'object',
'string',
],
'alias' => [
'boolean',
'double',
'integer',
],
'meta' => [
'$this',
'false',
'mixed',
'parent',
'resource',
'scalar',
'self',
'static',
'true',
'void',
],
];
/** @var array<string, true> */
private array $typesSetToFix;
public function configure(array $configuration): void
{
parent::configure($configuration);
$typesToFix = array_merge(...array_map(static fn (string $group): array => self::POSSIBLE_TYPES[$group], $this->configuration['groups']));
$this->typesSetToFix = array_combine($typesToFix, array_fill(0, \count($typesToFix), true));
}
public function getDefinition(): FixerDefinitionInterface
{
return new FixerDefinition(
'The correct case must be used for standard PHP types in PHPDoc.',
[
new CodeSample(
'<?php
/**
* @param STRING|String[] $bar
*
* @return inT[]
*/
'
),
new CodeSample(
'<?php
/**
* @param BOOL $foo
*
* @return MIXED
*/
',
['groups' => ['simple', 'alias']]
),
]
);
}
/**
* {@inheritdoc}
*
* Must run before GeneralPhpdocAnnotationRemoveFixer, GeneralPhpdocTagRenameFixer, NoBlankLinesAfterPhpdocFixer, NoEmptyPhpdocFixer, NoSuperfluousPhpdocTagsFixer, PhpdocAddMissingParamAnnotationFixer, PhpdocAlignFixer, PhpdocInlineTagNormalizerFixer, PhpdocLineSpanFixer, PhpdocNoAccessFixer, PhpdocNoAliasTagFixer, PhpdocNoEmptyReturnFixer, PhpdocNoPackageFixer, PhpdocNoUselessInheritdocFixer, PhpdocOrderByValueFixer, PhpdocOrderFixer, PhpdocParamOrderFixer, PhpdocReturnSelfReferenceFixer, PhpdocScalarFixer, PhpdocSeparationFixer, PhpdocSingleLineVarSpacingFixer, PhpdocSummaryFixer, PhpdocTagCasingFixer, PhpdocTagTypeFixer, PhpdocToParamTypeFixer, PhpdocToPropertyTypeFixer, PhpdocToReturnTypeFixer, PhpdocTrimConsecutiveBlankLineSeparationFixer, PhpdocTrimFixer, PhpdocTypesOrderFixer, PhpdocVarAnnotationCorrectOrderFixer, PhpdocVarWithoutNameFixer.
* Must run after PhpdocIndentFixer.
*/
public function getPriority(): int
{
/*
* Should be run before all other docblock fixers apart from the
* phpdoc_to_comment and phpdoc_indent fixer to make sure all fixers
* apply correct indentation to new code they add. This should run
* before alignment of params is done since this fixer might change
* the type and thereby un-aligning the params. We also must run before
* the phpdoc_scalar_fixer so that it can make changes after us.
*/
return 16;
}
protected function normalize(string $type): string
{
$typeExpression = new TypeExpression($type, null, []);
$typeExpression->walkTypes(function (TypeExpression $type): void {
if (!$type->isUnionType()) {
$value = $type->toString();
$valueLower = strtolower($value);
if (isset($this->typesSetToFix[$valueLower])) {
$value = $valueLower;
}
// normalize shape/callable/generic identifiers too
// TODO parse them as inner types and this will be not needed then
$value = Preg::replaceCallback(
'/^(\??\s*)([^()[\]{}<>\'"]+)(?<!\s)(\s*[\s()[\]{}<>])/',
fn ($matches) => $matches[1].$this->normalize($matches[2]).$matches[3],
$value
);
// TODO TypeExpression should be immutable and walkTypes method should be changed to mapTypes method
\Closure::bind(static function () use ($type, $value): void {
$type->value = $value;
}, null, TypeExpression::class)();
}
});
return $typeExpression->toString();
}
protected function createConfigurationDefinition(): FixerConfigurationResolverInterface
{
$possibleGroups = array_keys(self::POSSIBLE_TYPES);
return new FixerConfigurationResolver([
(new FixerOptionBuilder('groups', 'Type groups to fix.'))
->setAllowedTypes(['array'])
->setAllowedValues([new AllowedValueSubset($possibleGroups)])
->setDefault($possibleGroups)
->getOption(),
]);
}
}