Merge branch '3.x'

This commit is contained in:
Guilhem Niot 2020-08-06 10:29:17 +02:00
commit 23fdbf0412
10 changed files with 2 additions and 67 deletions

View File

@ -1,11 +1,7 @@
preset: symfony preset: symfony
enabled: enabled:
- newline_after_open_tag
- ordered_use - ordered_use
- short_array_syntax
disabled: disabled:
- unalign_equals - unalign_equals
- braces
- property_separation

View File

@ -22,7 +22,6 @@ class ExternalDocDescriber implements DescriberInterface
/** /**
* @param array|callable $externalDoc * @param array|callable $externalDoc
* @param bool $overwrite
*/ */
public function __construct($externalDoc, bool $overwrite = false) public function __construct($externalDoc, bool $overwrite = false)
{ {

View File

@ -27,8 +27,6 @@ final class RouteDescriber implements DescriberInterface, ModelRegistryAwareInte
private $routeDescribers; private $routeDescribers;
/** /**
* @param RouteCollection $routeCollection
* @param ControllerReflector $controllerReflector
* @param RouteDescriberInterface[]|iterable $routeDescribers * @param RouteDescriberInterface[]|iterable $routeDescribers
*/ */
public function __construct(RouteCollection $routeCollection, ControllerReflector $controllerReflector, $routeDescribers) public function __construct(RouteCollection $routeCollection, ControllerReflector $controllerReflector, $routeDescribers)

View File

@ -229,8 +229,6 @@ final class FormModelDescriber implements ModelDescriberInterface, ModelRegistry
} }
/** /**
* @param array $array
*
* @return bool true if $array contains only numbers, false otherwise * @return bool true if $array contains only numbers, false otherwise
*/ */
private function isNumbersArray(array $array): bool private function isNumbersArray(array $array): bool
@ -245,8 +243,6 @@ final class FormModelDescriber implements ModelDescriberInterface, ModelRegistry
} }
/** /**
* @param array $array
*
* @return bool true if $array contains only booleans, false otherwise * @return bool true if $array contains only booleans, false otherwise
*/ */
private function isBooleansArray(array $array): bool private function isBooleansArray(array $array): bool
@ -261,8 +257,6 @@ final class FormModelDescriber implements ModelDescriberInterface, ModelRegistry
} }
/** /**
* @param ResolvedFormTypeInterface $type
*
* @return ResolvedFormTypeInterface|null * @return ResolvedFormTypeInterface|null
*/ */
private function getBuiltinFormType(ResolvedFormTypeInterface $type) private function getBuiltinFormType(ResolvedFormTypeInterface $type)

View File

@ -282,8 +282,6 @@ class JMSModelDescriber implements ModelDescriberInterface, ModelRegistryAwareIn
} }
/** /**
* @param array $type
*
* @return bool|null * @return bool|null
*/ */
private function propertyTypeUsesGroups(array $type) private function propertyTypeUsesGroups(array $type)

View File

@ -127,7 +127,7 @@ final class FilteredRouteCollectionBuilder
return false; return false;
} }
/** @var null|Areas $areas */ /** @var Areas|null $areas */
$areas = $this->annotationReader->getMethodAnnotation( $areas = $this->annotationReader->getMethodAnnotation(
$method, $method,
Areas::class Areas::class

View File

@ -104,97 +104,62 @@ class SymfonyConstraints
/** /**
* @Assert\Count(min="0", max="10") * @Assert\Count(min="0", max="10")
*
* @param int $propertyNotBlank
*/ */
public function setPropertyNotBlank(int $propertyNotBlank): void public function setPropertyNotBlank(int $propertyNotBlank): void
{ {
$this->propertyNotBlank = $propertyNotBlank; $this->propertyNotBlank = $propertyNotBlank;
} }
/**
* @param int $propertyNotNull
*/
public function setPropertyNotNull(int $propertyNotNull): void public function setPropertyNotNull(int $propertyNotNull): void
{ {
$this->propertyNotNull = $propertyNotNull; $this->propertyNotNull = $propertyNotNull;
} }
/**
* @param int $propertyAssertLength
*/
public function setPropertyAssertLength(int $propertyAssertLength): void public function setPropertyAssertLength(int $propertyAssertLength): void
{ {
$this->propertyAssertLength = $propertyAssertLength; $this->propertyAssertLength = $propertyAssertLength;
} }
/**
* @param int $propertyRegex
*/
public function setPropertyRegex(int $propertyRegex): void public function setPropertyRegex(int $propertyRegex): void
{ {
$this->propertyRegex = $propertyRegex; $this->propertyRegex = $propertyRegex;
} }
/**
* @param int $propertyCount
*/
public function setPropertyCount(int $propertyCount): void public function setPropertyCount(int $propertyCount): void
{ {
$this->propertyCount = $propertyCount; $this->propertyCount = $propertyCount;
} }
/**
* @param int $propertyChoice
*/
public function setPropertyChoice(int $propertyChoice): void public function setPropertyChoice(int $propertyChoice): void
{ {
$this->propertyChoice = $propertyChoice; $this->propertyChoice = $propertyChoice;
} }
/**
* @param int $propertyChoiceWithCallback
*/
public function setPropertyChoiceWithCallback(int $propertyChoiceWithCallback): void public function setPropertyChoiceWithCallback(int $propertyChoiceWithCallback): void
{ {
$this->propertyChoiceWithCallback = $propertyChoiceWithCallback; $this->propertyChoiceWithCallback = $propertyChoiceWithCallback;
} }
/**
* @param int $propertyChoiceWithCallbackWithoutClass
*/
public function setPropertyChoiceWithCallbackWithoutClass(int $propertyChoiceWithCallbackWithoutClass): void public function setPropertyChoiceWithCallbackWithoutClass(int $propertyChoiceWithCallbackWithoutClass): void
{ {
$this->propertyChoiceWithCallbackWithoutClass = $propertyChoiceWithCallbackWithoutClass; $this->propertyChoiceWithCallbackWithoutClass = $propertyChoiceWithCallbackWithoutClass;
} }
/**
* @param int $propertyExpression
*/
public function setPropertyExpression(int $propertyExpression): void public function setPropertyExpression(int $propertyExpression): void
{ {
$this->propertyExpression = $propertyExpression; $this->propertyExpression = $propertyExpression;
} }
/**
* @param int $propertyRange
*/
public function setPropertyRange(int $propertyRange): void public function setPropertyRange(int $propertyRange): void
{ {
$this->propertyRange = $propertyRange; $this->propertyRange = $propertyRange;
} }
/**
* @param int $propertyLessThan
*/
public function setPropertyLessThan(int $propertyLessThan): void public function setPropertyLessThan(int $propertyLessThan): void
{ {
$this->propertyLessThan = $propertyLessThan; $this->propertyLessThan = $propertyLessThan;
} }
/**
* @param int $propertyLessThanOrEqual
*/
public function setPropertyLessThanOrEqual(int $propertyLessThanOrEqual): void public function setPropertyLessThanOrEqual(int $propertyLessThanOrEqual): void
{ {
$this->propertyLessThanOrEqual = $propertyLessThanOrEqual; $this->propertyLessThanOrEqual = $propertyLessThanOrEqual;

View File

@ -97,16 +97,12 @@ class User
*/ */
private $dateAsInterface; private $dateAsInterface;
/**
* @param float $money
*/
public function setMoney(float $money) public function setMoney(float $money)
{ {
$this->money = $money; $this->money = $money;
} }
/** /**
* @param int $id
* @OA\Property(example=1) * @OA\Property(example=1)
*/ */
public function setId(int $id) public function setId(int $id)
@ -131,9 +127,6 @@ class User
{ {
} }
/**
* @param int $friendsNumber
*/
public function setFriendsNumber(int $friendsNumber) public function setFriendsNumber(int $friendsNumber)
{ {
$this->friendsNumber = $friendsNumber; $this->friendsNumber = $friendsNumber;
@ -163,17 +156,11 @@ class User
{ {
} }
/**
* @return \DateTimeInterface
*/
public function getDateAsInterface(): \DateTimeInterface public function getDateAsInterface(): \DateTimeInterface
{ {
return $this->dateAsInterface; return $this->dateAsInterface;
} }
/**
* @param \DateTimeInterface $dateAsInterface
*/
public function setDateAsInterface(\DateTimeInterface $dateAsInterface) public function setDateAsInterface(\DateTimeInterface $dateAsInterface)
{ {
$this->dateAsInterface = $dateAsInterface; $this->dateAsInterface = $dateAsInterface;

View File

@ -429,7 +429,7 @@ class FunctionalTest extends WebTestCase
public function testSerializedNameAction() public function testSerializedNameAction()
{ {
if (!class_exists(SerializedName::class)) { if (!class_exists(SerializedName::class)) {
$this->markTestSkipped('Annotation @SerializedName doesn\'t exist.'); $this->markTestSkipped('Annotation @SerializedName doesn\'t exist.');
} }

View File

@ -38,8 +38,6 @@ class ControllerReflector
/** /**
* Returns the ReflectionMethod for the given controller string. * Returns the ReflectionMethod for the given controller string.
* *
* @param string $controller
*
* @return \ReflectionMethod|null * @return \ReflectionMethod|null
*/ */
public function getReflectionMethod(string $controller) public function getReflectionMethod(string $controller)