|
| 1 | +<?php declare(strict_types = 1); |
| 2 | + |
| 3 | +namespace PHPStan\Symfony; |
| 4 | + |
| 5 | +use PHPStan\Reflection\AdditionalConstructorsExtension; |
| 6 | +use PHPStan\Reflection\ClassReflection; |
| 7 | +use PHPStan\Reflection\Php\PhpPropertyReflection; |
| 8 | +use PHPStan\Reflection\PropertyReflection; |
| 9 | +use PHPStan\Rules\Properties\ReadWritePropertiesExtension; |
| 10 | +use PHPStan\Type\FileTypeMapper; |
| 11 | +use function count; |
| 12 | + |
| 13 | +class RequiredAutowiringExtension implements ReadWritePropertiesExtension, AdditionalConstructorsExtension |
| 14 | +{ |
| 15 | + |
| 16 | + /** @var FileTypeMapper */ |
| 17 | + private $fileTypeMapper; |
| 18 | + |
| 19 | + public function __construct(FileTypeMapper $fileTypeMapper) |
| 20 | + { |
| 21 | + $this->fileTypeMapper = $fileTypeMapper; |
| 22 | + } |
| 23 | + |
| 24 | + public function isAlwaysRead(PropertyReflection $property, string $propertyName): bool |
| 25 | + { |
| 26 | + return false; |
| 27 | + } |
| 28 | + |
| 29 | + public function isAlwaysWritten(PropertyReflection $property, string $propertyName): bool |
| 30 | + { |
| 31 | + return false; |
| 32 | + } |
| 33 | + |
| 34 | + public function isInitialized(PropertyReflection $property, string $propertyName): bool |
| 35 | + { |
| 36 | + // If the property is public, check for @required on the property itself |
| 37 | + if (!$property->isPublic()) { |
| 38 | + return false; |
| 39 | + } |
| 40 | + |
| 41 | + if ($property->getDocComment() !== null && $this->isRequiredFromDocComment($property->getDocComment())) { |
| 42 | + return true; |
| 43 | + } |
| 44 | + |
| 45 | + // Check for the attribute version |
| 46 | + if ($property instanceof PhpPropertyReflection && count($property->getNativeReflection()->getAttributes('Symfony\Contracts\Service\Attribute\Required')) > 0) { |
| 47 | + return true; |
| 48 | + } |
| 49 | + |
| 50 | + return false; |
| 51 | + } |
| 52 | + |
| 53 | + public function getAdditionalConstructors(ClassReflection $classReflection): array |
| 54 | + { |
| 55 | + $additionalConstructors = []; |
| 56 | + $nativeReflection = $classReflection->getNativeReflection(); |
| 57 | + |
| 58 | + foreach ($nativeReflection->getMethods() as $method) { |
| 59 | + if (!$method->isPublic()) { |
| 60 | + continue; |
| 61 | + } |
| 62 | + |
| 63 | + if ($method->getDocComment() !== false && $this->isRequiredFromDocComment($method->getDocComment())) { |
| 64 | + $additionalConstructors[] = $method->getName(); |
| 65 | + } |
| 66 | + |
| 67 | + if (count($method->getAttributes('Symfony\Contracts\Service\Attribute\Required')) === 0) { |
| 68 | + continue; |
| 69 | + } |
| 70 | + |
| 71 | + $additionalConstructors[] = $method->getName(); |
| 72 | + } |
| 73 | + |
| 74 | + return $additionalConstructors; |
| 75 | + } |
| 76 | + |
| 77 | + private function isRequiredFromDocComment(string $docComment): bool |
| 78 | + { |
| 79 | + $phpDoc = $this->fileTypeMapper->getResolvedPhpDoc(null, null, null, null, $docComment); |
| 80 | + |
| 81 | + foreach ($phpDoc->getPhpDocNodes() as $node) { |
| 82 | + // @required tag is available, meaning this property is always initialized |
| 83 | + if (count($node->getTagsByName('@required')) > 0) { |
| 84 | + return true; |
| 85 | + } |
| 86 | + } |
| 87 | + |
| 88 | + return false; |
| 89 | + } |
| 90 | + |
| 91 | +} |
0 commit comments